欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

数据的增删改

程序员文章站 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

相关标签: MySQL