- 创建库
create database xxx;
- 查看库名
show databases;
- 进入库
use xxx;
- 查看表
show tables;
- 创建表
create tables xxx;
- 清除表
delete from xxx;
- 查看表结构
describe xxx;
- 创建表名 写有id xm xb csny
create table name (id int(3) auto_increment not null primary key, xm char(8),xb char(2),csny date);
- 写入记录
insert into xxx values(‘‘,‘张三‘,‘男‘,‘1971-10-01‘);
insert into xxx values(‘‘,‘李四‘,‘女‘,‘2010-3-2‘);
- 验证是否写入正确
select * from xxx;
- 修改记录
update xxx set csny=‘2009-2-23‘ where xm=‘张三‘;
- 删除表记录
delete from name where xm=‘张三‘
- 删除表
drop table xxx;
时间: 2024-10-28 15:00:56