select into語句的應用技巧

2021-04-13 00:59:18 字數 501 閱讀 3966

select into語句的應用技巧

1.  將乙個資料表的結構複製到乙個新表上,但是不移動記錄:

select * into newtable from dbo.inventorywhere 1<>1

2.select into

語句建立乙個新錶

,並用select

的結果集填充該錶

例1select shippers.*, link.address, link.city,

link.region, link.postalcode

into

newshippers

from shippers 

join linkserver.db.dbo.shippers as link

on (shippers.shipperid = link.shipperid)

例2select * into inventory1 from inventory where locationid=25

使用select into 語句

在新建臨時表時,如果一次性插入資料量很大,那麼可以使用select into代替create table,避免log,提高速度 如果資料量不大,為了緩和系統表的資源,建議先create table,然後insert。語法 select column name s into newtable in e...

if語句的應用

if else if條件多選一 格式if 條件 判斷條件 如 int main void if score 60 system pause return0 1 如果只有一條語句,可以不加花括號,建議都加 2 不要隨意加分號 int main void 結果還是輸出hello,if變成了空語句。3 區...

儲存過程中SELECT INTO的使用

在mysql儲存過程中使用select into語句為變數賦值 用來將查詢返回的一行的各個列值儲存到區域性變數中。要求 查詢的結果集中只能有1行。select col name into var name table expr 使用select into語句在資料庫中進行查詢,並將得到的結果賦值給變...