mirror of
https://gitee.com/mybatis-flex/mybatis-flex.git
synced 2025-12-07 17:18:24 +08:00
16 lines
308 B
SQL
Executable File
16 lines
308 B
SQL
Executable File
CREATE TABLE IF NOT EXISTS `tb_account`
|
|
(
|
|
`id` INTEGER PRIMARY KEY,
|
|
`u_name` VARCHAR(100) NOT NULL,
|
|
`age` INTEGER,
|
|
`birthday` DATETIME
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS `tb_account1`
|
|
(
|
|
`id` INTEGER PRIMARY KEY,
|
|
`u_name` VARCHAR(100) NOT NULL,
|
|
`age` INTEGER,
|
|
`birthday` DATETIME
|
|
);
|