一、插入多行資料:
1.insert into 。。。 select 從乙個表中取出資料插入另乙個已存在的表
2.select into 從乙個表中取出資料插入乙個新錶中
3.insert into ()
union
select 常量列表
二、簡單查詢
1. 查詢所有行和列 select * from 表名
2.查詢部分列 select 列列表 from 表名
3.查詢部分行 select 列列表 from 表名 where 列 運算子 值
4.列加別名: select 列 [as] 別名,別名=列 from 表名 where 條件
5.常量列
6.查詢資料為null : is null/is not null
7.查詢前幾條記錄: top n[percent]
8.查詢不重複資料: select distinct 列 from 表名
9.排序:
select 列列表 from 表名
order by 列1 [asc|desc],列2 [asc|desc]
SQLServer 簡單子查詢
go 使用變數方式實現 declare stuid int select stuid studentid from students where studentname 張永利 select studentname,gender,age from students where studentid s...
SQL Server中資料檢索(簡單查詢)
1.選擇列 1 select 列名1,列名2.from 表名 select sno,sname from student 2 所有列 select from 表名 3 計算列 select sno,grade 2 newgrade from sc select productid,price sto...
SQL Server 資料庫的幾種簡單查詢
在數庫檔案內容較多的情況下,為了更加明確快速得找到某條資訊,下面舉出3種sql查詢方法 1 投影查詢 2 選擇查詢 3 排序查詢 下面給出的是進行測試的資料庫表table 首先是投影查詢,為了讓檢視的資料更加明確,易懂。投影查詢有三種寫法 select cid 客戶編號,ccontact 聯絡人,c...