【SQL語(yǔ)句語(yǔ)法說(shuō)明】
select * from 表名 --顯示表中的所有記錄
select 字段 as 別名 from 表名 where 條件 --用別名顯示查詢(xún)結(jié)果
select top 行數(shù) 字段 from 表名 --限制返回結(jié)果集行數(shù)
select 字段 from 表名 where 字段 like 關(guān)鍵字 --模糊查詢(xún)
select distinct 字段 from 表名 --消除重復(fù)體
select distinct top 行數(shù) 字段 from 表名
insert into 表名 values (字段1值,字段2值,字段3值) --插入數(shù)據(jù)
insert into 表名(字段1,字段2,字段3) values(字段1值,字段2值,字段3值)
update 表名 set 字段=新值 where 條件 --更新數(shù)據(jù)
delete from 表名 where 條件 --刪除數(shù)據(jù)
alter table 表名 add 字段名 數(shù)據(jù)類(lèi)型 --添加字段
alter table 表名 drop column 字段名 --刪除字段
create table 表名 --創(chuàng)建表
drop table 表名 --刪除表
order by 字段 --按字段排序
group by 字段 --按字段分組 字段必須跟著所查詢(xún)的字段
【關(guān)于寫(xiě)這小工具的一些說(shuō)明】
1、連接學(xué)校機(jī)房的SQL 經(jīng)?(好大杯具);
2、有些同學(xué)或網(wǎng)吧的電腦 沒(méi)裝 SQL2008;
3、每次課堂練習(xí),都得先創(chuàng)個(gè)(浪費(fèi)時(shí)間)。
- PC官方版
- 安卓官方手機(jī)版
- IOS官方手機(jī)版