mirror of
https://github.com/gogf/gf.git
synced 2025-04-05 03:05:05 +08:00
9 lines
362 B
SQL
9 lines
362 B
SQL
CREATE TABLE `issue3915` (
|
|
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'user id',
|
|
`a` float DEFAULT NULL COMMENT 'user name',
|
|
`b` float DEFAULT NULL COMMENT 'user status',
|
|
PRIMARY KEY (`id`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
|
|
INSERT INTO `issue3915` (`id`,`a`,`b`) VALUES (1,1,2);
|
|
INSERT INTO `issue3915` (`id`,`a`,`b`) VALUES (2,5,4); |