常使用的sql语句

drop database * ;

开个玩笑!!哈啊哈

创建表

create table t1(id int not null primary key, name char(20) not null );

语法 create table 表名称( 字段名 字段名类型 字段描述符,字段名 字段类型 字段描述符);

删除表

drop table test;语法:drop table 表名称;

修改表添加字段

alter table t1 add(score int not null)
语法:alter table 表明称 add(字段名 类型 描述符);

移除字段

alter table t1 drop column score;

语法:alter table 表名 drop colunm 字段名,drop colunm 字段名;

变更字段

alter table t1 change name score int not null;

语法:alter table 表名 change 旧字段名 新字段名 新字段描述符

插入

insert into winton values(001,'zww'),(002,'rs');

语法:insert into 表名 values(字段1值,字段2值,……),(字段1值,字段2值,……);

查询

select * from t1 where socre>90;语法:select 字段1,字段2 from 表名 where 条件;

嵌套查询

select name from winton where id=(select id from t1 where score=90);

语法:select 字段一,字段二…… from 表名 where 条件(查询);

删除

delete from winton where id=4;

语法:delete from 表名 where 条件;

更新

update t1 set score=69 where id=2;

语法:update 表名 set 更改的字段名=值 where 条件;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值