use rujia_transmit
go--建表同時插入多條資料
create table test(id int,name varchar(50),*** int)
insert into test select 1,'愛的',1
union all select 2,'撒播',1
union all select 3,'玻璃',0
union all select 4,'aaaa',1
select * from test
--在sql中將數字轉換成漢字
select id,name,*** =
case ***
when 1 then '男'
when 0 then '女'
endfrom test
--隨機查詢前兩條資料
select top(2) * from test order by newid()
--某月有多少天
select day(dateadd(dd,-day('2012-05-09'),dateadd(mm,1,'2012-05-09'))) as 'daynumber'
--姓氏筆畫排序,筆畫少的在前
select * from test order by name collate chinese_prc_stroke_ci_as
--同一資料庫下將test表複製給bb
select * into bb from test
select * from bb
drop table test
也許是面試的題目
面試題 break關鍵字 使用場景 1.在switch中使用,作用結束switch判斷。2.在迴圈中使用,作用結束當前迴圈。break的使用注意點 1.break後面不需要做任何操作 2.如果外部迴圈結束,內部迴圈也會結束。continue 繼續 使用場景 continue只能在迴圈中使用。cont...
婚姻也許是也許不是愛情的墳墓
在朋友的空間看到了一篇文章,內容是寫從愛情步入婚姻殿堂後的男女心態的變化,描述的不能不說是惟妙惟肖,淋漓盡致。其中有一些論述,很耐人尋味,發人深思,下面我把這篇文章 過來,奇文共欣賞,疑義相與析。兩個人由相識 相知,到相戀 相愛,最終攜手走向愛情的歸宿 婚姻的殿堂,心中無不懷著甜蜜的憧憬 美好的期待...
經典的SQL語句
說明 複製表 只複製結構,源表名 a 新錶名 b b不存在 sql select into b from a where 1 1 說明 拷貝表 拷貝資料,源表名 a 目標表名 b b存在 sql insert into b a,b,c select d,e,f from b sql select a...