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

sql数据库主要语句

程序员文章站 2022-09-28 09:23:11
一.查询 select * from 表 where 条件 根据条件查询所有 select top 15 * from 表1 a join 表2 b on a.id =b.id where 1=1 order by a.id,.... desc --连表查询显示前15行 二.增加 insert in ......

一.查询

select * from 表 where  条件                ---根据条件查询所有

select top 15 * from 表1 a join  表2 b on  a.id =b.id  where 1=1  order by a.id,.... desc                       --连表查询显示前15行

二.增加

insert into 表 (字段1,字段2) values('值1','值2')

三.修改

update 表 set 字段='值' where 条件     --根据条件修改字段的值

四.删除

delete where 条件 from 表                   --根据条件删除

delete from 表                                      --删除所有数据

truncate table 表                                  --情况表所有数据