mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
17 lines
293 B
Text
17 lines
293 B
Text
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1(a int);
|
|
INSERT INTO t1 VALUES (1), (2);
|
|
<?xml version="1.0"?>
|
|
<mysqldump>
|
|
<database name="test">
|
|
<table name="t1">
|
|
<row>
|
|
<field name="a">1</field>
|
|
</row>
|
|
<row>
|
|
<field name="a">2</field>
|
|
</row>
|
|
</table>
|
|
</database>
|
|
</mysqldump>
|
|
DROP TABLE t1;
|