Quick export (the fast path)
1
Pick the database from the left tree
Click the database name. Don’t click into a single table unless you only want that table.
2
Open the Export tab
Top of the page.



3
Leave defaults, click Go
Export method: Quick. Format: SQL. The browser downloads
database_name.sql straight away.Custom export
Custom mode reveals every option. Useful when:- You only want some tables, not all
- You want compressed output (
.zipor.gz) - You want the dump in CSV, JSON, or another format
- You need
INSERT IGNOREinstead ofINSERT, or noDROP TABLEstatements


Custom export with table selector and format options
Format choices
For backups, always SQL.
Export a single table
1
Drill into the table
Click the database in the left tree, then click the table name.
2
Open the Export tab
Same tab as for whole-database export. The scope is now just this one table.
3
Pick the format and click Go
The download is a single-table dump.
Common issues
The download is empty or 0 bytes
The download is empty or 0 bytes
Browser blocked the download, or the export hit a timeout. Switch to Custom, tick Save output to a file, and pick
gzipped compression. Smaller files finish before any timeout.For very large exports, use SSH and mysqldump:The dump has DEFINER clauses I don't want
The dump has DEFINER clauses I don't want
Custom export → scroll to Object creation options → untick Add CREATE PROCEDURE / FUNCTION / EVENT statement if you’re moving the dump to a host that doesn’t run procedures. Or use the SSH route with
mysqldump --skip-definer.I want to re-import on a different host
I want to re-import on a different host
Tick Add DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT / TRIGGER statement in the Custom export. This makes the dump self-replacing. Re-importing replaces existing tables instead of failing on duplicates.Watch for
utf8mb4_0900_ai_ci if exporting from MySQL 8 to a MariaDB target. See the import common issues for the workaround.Next
Re-import the dump elsewhere
Same Import tab on another phpMyAdmin or another host.
Set up nightly off-server backups
JetBackup runs without you needing to remember.
Need a hand?
Open a ticket
Best for anything that needs an account check or a config change on our end.
Live chat
Faster for quick questions during business hours.

