数据的增删改
程序员文章站
2022-09-05 15:13:22
增 insert快速入门案例mysql> create table goods( -> id int unsigned not null default 0, -> goods_name varchar(5) not null default '', -> price float not null default 0.0, -> mfg date not null comment '生产日期' -> )charset=utf8...
增 insert
快速入门案例
mysql> create table goods(
-> id int unsigned not null default 0,
-> goods_name varchar(5) not null default '',
-> price float not null
本文地址:https://blog.csdn.net/wozhangyi/article/details/107643739
上一篇: 达梦数据库如何解决sql卡住的问题
下一篇: MYSQL批量插入数据-存储过程