<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    sql 不錯(cuò) (http://www.lzbk.com/blog/vista/index.html)

    http://lzbk.com/blog/vista/asm.rar  (asm)

  • 說(shuō)明:復(fù)制表(只復(fù)制結(jié)構(gòu),源表名:a 新表名:b)
    select * into b from a where 1<>1

  • 說(shuō)明:拷貝表(拷貝數(shù)據(jù),源表名:a 目標(biāo)表名:b)
    insert into b(a, b, c) select d,e,f from b;

  • 說(shuō)明:顯示文章、提交人和最后回復(fù)時(shí)間
    select a.title,a.username,b.adddate from table a,(select max(adddate) adddate from table where table.title=a.title) b

  • 說(shuō)明:外連接查詢(表名1:a 表名2:b)
    select a.a, a.b, a.c, b.c, b.d, b.f from a LEFT OUT JOIN b ON a.a = b.c

  • 說(shuō)明:日程安排提前五分鐘提醒
    select * from 日程安排 where datediff('minute',f開始時(shí)間,getdate())>5
  • 說(shuō)明:--
    select * from studentinfo where not exists(select * from student where studentinfo.id=student.id) and 系名稱='"&strdepartmentname&"' and 專業(yè)名稱='"&strprofessionname&"' order by 性別,生源地,高考總成績(jī)
  • 一個(gè)SQL語(yǔ)句的問(wèn)題:行列轉(zhuǎn)換
    select * from v_temp
    上面的視圖結(jié)果如下:
    user_>-------------------------
    系統(tǒng)管理員 管理員
    feng 管理員
    feng 一般用戶
    test 一般用戶
    想把結(jié)果變成這樣:
    user_>---------------------------
    系統(tǒng)管理員 管理員
    feng 管理員,一般用戶
    test 一般用戶
    ===================
    create table a_test(>insert into a_test values('李','管理員')
    insert into a_test values('張','管理員')
    insert into a_test values('張','一般用戶')
    insert into a_test values('常','一般用戶')

    create function join_str(@content varchar(100))
    returns varchar(2000)
    as
    begin
    declare @str varchar(2000)
    set @str=''
    select @str=@str+','+rtrim(role2) from a_test where [name]=@content
    select @str=right(@str,len(@str)-1)
    return @str
    end
    go

    --調(diào)用:
    select [name],dbo.join_str([name]) role2 from a_test group by [name]

    --select distinct name,dbo.uf_test(name) from a_test

  • 快速比較結(jié)構(gòu)相同的兩表
    結(jié)構(gòu)相同的兩表,一表有記錄3萬(wàn)條左右,一表有記錄2萬(wàn)條左右,我怎樣快速查找兩表的不同記錄?
    ============================
    給你一個(gè)測(cè)試方法,從northwind中的orders表取數(shù)據(jù)。
    select * into n1 from orders
    select * into n2 from orders

    select * from n1
    select * from n2

    --添加主鍵,然后修改n1中若干字段的若干條
    alter table n1 add constraint pk_n1_id primary key (OrderID)
    alter table n2 add constraint pk_n2_id primary key (OrderID)

    select OrderID from (select * from n1 union select * from n2) a group by OrderID having count(*) > 1

    應(yīng)該可以,而且將不同的記錄的ID顯示出來(lái)。
    下面的適用于雙方記錄一樣的情況,

    select * from n1 where orderid in (select OrderID from (select * from n1 union select * from n2) a group by OrderID having count(*) > 1)
    至于雙方互不存在的記錄是比較好處理的
    --刪除n1,n2中若干條記錄
    delete from n1 where orderID in ('10728','10730')
    delete from n2 where orderID in ('11000','11001')

    --*************************************************************
    -- 雙方都有該記錄卻不完全相同
    select * from n1 where orderid in(select OrderID from (select * from n1 union select * from n2) a group by OrderID having count(*) > 1)
    union
    --n2中存在但在n1中不存的在10728,10730
    select * from n1 where OrderID not in (select OrderID from n2)
    union
    --n1中存在但在n2中不存的在11000,11001
    select * from n2 where OrderID not in (select OrderID from n1)

  • 四種方法取表里n到m條紀(jì)錄:

    1.
    select top m * into 臨時(shí)表(或表變量) from table>set rowcount n
    select * from 表變量 order by column>

    2.
    select top n * from (select top m * from table>

    3.如果tablename里沒(méi)有其他identity列,那么:
    select identity(int) id0,* into #temp from tablename

    取n到m條的語(yǔ)句為:
    select * from #temp where id0 >=n and id0 <= m

    如果你在執(zhí)行select identity(int) id0,* into #temp from tablename這條語(yǔ)句的時(shí)候報(bào)錯(cuò),那是因?yàn)槟愕腄B中間的select into/bulkcopy屬性沒(méi)有打開要先執(zhí)行:
    exec sp_dboption 你的DB名字,'select into/bulkcopy',true


    4.如果表里有identity屬性,那么簡(jiǎn)單:
    select * from table>
  • 如何刪除一個(gè)表中重復(fù)的記錄?
    create table a_dist(id int,>
    insert into a_dist values(1,'abc')
    insert into a_dist values(1,'abc')
    insert into a_dist values(1,'abc')
    insert into a_dist values(1,'abc')

    exec up_distinct 'a_dist','id'

    select * from a_dist

    create procedure up_distinct(@t_>--f_key表示是分組字段﹐即主鍵字段
    as
    begin
    declare @max integer,@id varchar(30) ,@sql varchar(7999) ,@type integer
    select @sql = 'declare cur_rows cursor for select '+@f_key+' ,count(*) from ' +@t_>exec(@sql)
    open cur_rows
    fetch cur_rows into @id,@max
    while @@fetch_status=0
    begin
    select @max = @max -1
    set rowcount @max
    select @type = xtype from syscolumns where id=object_id(@t_name) and >if @type=56
    select @sql = 'delete from '+@t_name+' where ' + @f_key+' = '+ @id
    if @type=167
    select @sql = 'delete from '+@t_name+' where ' + @f_key+' = '+''''+ @id +''''
    exec(@sql)
    fetch cur_rows into @id,@max
    end
    close cur_rows
    deallocate cur_rows
    set rowcount 0
    end

    select * from systypes
    select * from syscolumns where id = object_id('a_dist')

  • 查詢數(shù)據(jù)的最大排序問(wèn)題(只能用一條語(yǔ)句寫)
    CREATE TABLE hard (qu char (11) ,co char (11) ,je numeric(3, 0))

    insert into hard values ('A','1',3)
    insert into hard values ('A','2',4)
    insert into hard values ('A','4',2)
    insert into hard values ('A','6',9)
    insert into hard values ('B','1',4)
    insert into hard values ('B','2',5)
    insert into hard values ('B','3',6)
    insert into hard values ('C','3',4)
    insert into hard values ('C','6',7)
    insert into hard values ('C','2',3)


    要求查詢出來(lái)的結(jié)果如下:

    qu co je
    ----------- ----------- -----
    A 6 9
    A 2 4
    B 3 6
    B 2 5
    C 6 7
    C 3 4


    就是要按qu分組,每組中取je最大的前2位!!
    而且只能用一句sql語(yǔ)句!!!
    select * from hard a where je in (select top 2 je from hard b where a.qu=b.qu order by je)

  • 求刪除重復(fù)記錄的sql語(yǔ)句?
    怎樣把具有相同字段的紀(jì)錄刪除,只留下一條。
    例如,表test里有id,name字段
    如果有name相同的記錄 只留下一條,其余的刪除。
    name的內(nèi)容不定,相同的記錄數(shù)不定。
    有沒(méi)有這樣的sql語(yǔ)句?
    ==============================
    A:一個(gè)完整的解決方案:

    將重復(fù)的記錄記入temp1表:
    select [標(biāo)志字段id],count(*) into temp1 from [表名]
    group by [標(biāo)志字段id]
    having count(*)>1

    2、將不重復(fù)的記錄記入temp1表:
    insert temp1 select [標(biāo)志字段id],count(*) from [表名] group by [標(biāo)志字段id] having count(*)=1

    3、作一個(gè)包含所有不重復(fù)記錄的表:
    select * into temp2 from [表名] where 標(biāo)志字段id in(select 標(biāo)志字段id from temp1)

    4、刪除重復(fù)表:
    delete [表名]

    5、恢復(fù)表:
    insert [表名] select * from temp2

    6、刪除臨時(shí)表:
    drop table temp1
    drop table temp2
    ================================
    B:
    create table a_dist(id int,>
    insert into a_dist values(1,'abc')
    insert into a_dist values(1,'abc')
    insert into a_dist values(1,'abc')
    insert into a_dist values(1,'abc')

    exec up_distinct 'a_dist','id'

    select * from a_dist

    create procedure up_distinct(@t_>--f_key表示是分組字段﹐即主鍵字段
    as
    begin
    declare @max integer,@id varchar(30) ,@sql varchar(7999) ,@type integer
    select @sql = 'declare cur_rows cursor for select '+@f_key+' ,count(*) from ' +@t_>exec(@sql)
    open cur_rows
    fetch cur_rows into @id,@max
    while @@fetch_status=0
    begin
    select @max = @max -1
    set rowcount @max
    select @type = xtype from syscolumns where id=object_id(@t_name) and >if @type=56
    select @sql = 'delete from '+@t_name+' where ' + @f_key+' = '+ @id
    if @type=167
    select @sql = 'delete from '+@t_name+' where ' + @f_key+' = '+''''+ @id +''''
    exec(@sql)
    fetch cur_rows into @id,@max
    end
    close cur_rows
    deallocate cur_rows
    set rowcount 0
    end

    select * from systypes
    select * from syscolumns where id = object_id('a_dist')

  • 行列轉(zhuǎn)換--普通

    假設(shè)有張學(xué)生成績(jī)表(CJ)如下
    >張三 語(yǔ)文 80
    張三 數(shù)學(xué) 90
    張三 物理 85
    李四 語(yǔ)文 85
    李四 數(shù)學(xué) 92
    李四 物理 82

    想變成
    姓名 語(yǔ)文 數(shù)學(xué) 物理
    張三 80 90 85
    李四 85 92 82

    declare @sql varchar(4000)
    set @sql = 'select Name'
    select @sql = @sql + ',sum(case Subject when '''+Subject+''' then Result end) ['+Subject+']'
    from (select distinct Subject from CJ) as a
    select @sql = @sql+' from test group by name'
    exec(@sql)

    行列轉(zhuǎn)換--合并

    有表A,
    id pid
    1 1
    1 2
    1 3
    2 1
    2 2
    3 1
    如何化成表B:
    id pid
    1 1,2,3
    2 1,2
    3 1

    創(chuàng)建一個(gè)合并的函數(shù)
    create function fmerg(@id int)
    returns varchar(8000)
    as
    begin
    declare @str varchar(8000)
    set @str=''
    select @str=@str+','+cast(pid as varchar) from 表A where id=@id
    set @str=right(@str,len(@str)-1)
    return(@str)
    End
    go

    --調(diào)用自定義函數(shù)得到結(jié)果
    select distinct id,dbo.fmerg(id) from 表A

  • 如何取得一個(gè)數(shù)據(jù)表的所有列名

    方法如下:先從SYSTEMOBJECT系統(tǒng)表中取得數(shù)據(jù)表的SYSTEMID,然后再SYSCOLUMN表中取得該數(shù)據(jù)表的所有列名。
    SQL語(yǔ)句如下:
    declare @objid int,@obj>set @obj>select @objid = id from sysobjects where id = object_id(@objname)
    select 'Column_name' = >


    SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_>
  • 通過(guò)SQL語(yǔ)句來(lái)更改用戶的密碼

    修改別人的,需要sysadmin role
    EXEC sp_password NULL, 'newpassword', 'User'

    如果帳號(hào)為SA執(zhí)行EXEC sp_password NULL, 'newpassword', sa

  • 怎么判斷出一個(gè)表的哪些字段不允許為空?

    select COLUMN_>
  • 如何在數(shù)據(jù)庫(kù)里找到含有相同字段的表?
    a. 查已知列名的情況
    SELECT b.>From syscolumns a INNER JOIN sysobjects b
    ON a.id=b.id
    AND b.type='U'
    AND a.>
  • 未知列名查所有在不同表出現(xiàn)過(guò)的列名
    Select o.>From syscolumns s1, sysobjects o
    Where s1.id = o.id
    And o.type = 'U'
    And Exists (
    Select 1 From syscolumns s2
    Where s1.>And s1.id <> s2.id
    )

  • 查詢第xxx行數(shù)據(jù)

    假設(shè)id是主鍵:
    select * from (select top xxx * from yourtable) aa where not exists(select 1 from (select top xxx-1 * from yourtable) bb where aa.id=bb.id)

    如果使用游標(biāo)也是可以的
    fetch absolute [number] from [cursor_name]
    行數(shù)為絕對(duì)行數(shù)

  • SQL Server日期計(jì)算
    a. 一個(gè)月的第一天
    SELECT DATEADD(mm, DATEDIFF(mm,0,getdate()), 0)
    b. 本周的星期一
    SELECT DATEADD(wk, DATEDIFF(wk,0,getdate()), 0)
    c. 一年的第一天
    SELECT DATEADD(yy, DATEDIFF(yy,0,getdate()), 0)
    d. 季度的第一天
    SELECT DATEADD(qq, DATEDIFF(qq,0,getdate()), 0)
    e. 上個(gè)月的最后一天
    SELECT dateadd(ms,-3,DATEADD(mm, DATEDIFF(mm,0,getdate()), 0))
    f. 去年的最后一天
    SELECT dateadd(ms,-3,DATEADD(yy, DATEDIFF(yy,0,getdate()), 0))
    g. 本月的最后一天
    SELECT dateadd(ms,-3,DATEADD(mm, DATEDIFF(m,0,getdate())+1, 0))
    h. 本月的第一個(gè)星期一
    select DATEADD(wk, DATEDIFF(wk,0,
    dateadd(dd,6-datepart(day,getdate()),getdate())
    ), 0)
    i. 本年的最后一天
    SELECT dateadd(ms,-3,DATEADD(yy, DATEDIFF(yy,0,getdate())+1, 0))。
  • posted on 2007-04-20 13:39 leoli 閱讀(489) 評(píng)論(0)  編輯  收藏 所屬分類: database

    導(dǎo)航

    <2025年5月>
    27282930123
    45678910
    11121314151617
    18192021222324
    25262728293031
    1234567

    統(tǒng)計(jì)

    常用鏈接

    留言簿(6)

    隨筆分類

    隨筆檔案(17)

    文章分類(86)

    收藏夾(3)

    flex blog

    good site

    java blog

    my friend

    tools

    抓蝦

    搜索

    最新評(píng)論

    閱讀排行榜

    評(píng)論排行榜

    主站蜘蛛池模板: 国产大片线上免费看| 亚洲av午夜成人片精品网站| 农村寡妇一级毛片免费看视频| 亚洲中文字幕无码久久综合网| 99re在线免费视频| 亚洲av永久无码一区二区三区| 亚洲国产精品狼友中文久久久 | www成人免费视频| 亚洲视频免费观看| 免费国产a国产片高清网站| 久久免费国产视频| 国产成人亚洲综合在线| 亚洲AV无码久久寂寞少妇| 国内自产拍自a免费毛片| 免费看少妇高潮成人片| 中文字幕亚洲精品无码| 亚洲精品成人无限看| 免费看少妇作爱视频| 国产成人精品无码免费看 | 国产在线观看免费av站| 亚洲xxxx18| 亚洲AV无码久久精品色欲| 国产无遮挡又黄又爽免费视频| 日韩视频在线观看免费| 国产亚洲视频在线播放大全| 亚洲图片中文字幕| 国产偷窥女洗浴在线观看亚洲 | 亚洲第一页在线观看| 亚洲精品国精品久久99热| 一个人看的www在线观看免费| 99久久免费国产精精品| 亚洲国产精品ⅴa在线观看| 777亚洲精品乱码久久久久久| 亚洲A∨精品一区二区三区| 青青青国产在线观看免费网站| 久久久久免费视频| 无码天堂亚洲国产AV| 亚洲AV男人的天堂在线观看| 亚洲人成亚洲精品| 久久亚洲精品国产精品黑人| 亚洲成av人片不卡无码久久|