1.create创建表
创建表时,通常会有如下设置:主键、非空、取值唯一、使用自动增长等。
根据如图创建表名为userinfo的数据表:
create table userinfo(id int not null primary key auto_increment,username varchar(50) not null unique,createtime datetime);
主键:primary key;非空:not null;唯一:unique;使用自动增长:auto_increment;
若需要添加备注信息的话则在SQL语句末尾添加comment ‘备注信息’;备注信息需用单引号引起来
若遇到需要设计时间字段,则数据类型为datetime。
2.insert插入数据
句式为:insert into 表名(字段名) values (内容列表);
例:在上述userinfo表中插入一条数据
insert into userinfo(id,username,createtime) values(1,'阿伟','2024-8-26 00:00:00');
3.update更新数据
句式为:update 表名 set 字段=表达式 where……;
例:在表中新增用户名为张三的数据,将张三更名为李四
update userinfo set username='李四' where id=2;