MSSQL語句問題

2022-06-09 12:11:50 字數 789 閱讀 8445

1樓:

select a.id,b.id from 表1 a join 表2 b on a.id=b.name

2樓:匿名使用者

select id, names form 表1 where id not in (select name from 表1)

3樓:唯一

select * from 表1 a,表1 b where a.id not in (select * from b)

4樓:聲天材

_id('tempdb..#tb') is not null

begin

drop table #tb

endselect htm.id,htm.[name],htm.

hhh,html.id as xid into #tb from htm left outer join html on htm.id=html.

(select * from #tb a where a.xid is not null) b

where html.id=b.id

insert into html(id,html,hhhh) select b.id,b.[name],b.

hhh from (select * from #tb a where a.xid is null) b

delete from htm

下面的access語句轉mssql語句怎麼寫

你這應該是想兩個表合併查詢是吧 select users.uname,admin.adminac from admin join user on users.x admin.y where admin.user 1 and user.id 1 因為你沒有把這兩個表中的關聯欄位寫出來,所以我用 use...

ASP和MSSQL高手請進,高分請教問題

首先執行一下conn.asp檔案,看連結資料庫是否有問題,然後設斷點除錯!既然在查詢分析器查到有錯誤了,就說明是sql語句的問題了。會不是是表名跟my firend不一樣呢,仔細看看是不是打字的時候弄錯了。報這樣的錯,肯定不是連線的問題了。仔細檢視sql語句。我以前出過類似的錯誤,最終原因是其中的一...

sql語句問題,sql語句問題

group by是分組函式 描述可能不準確 count是聚合函式,一定要確定分組的維度,才能在該維度下使用聚合函式進行統計,你要新增dname,那麼dname應該和deptno一起作為統計的維度,又dname在dept表中需要進行表關聯,所以 sql select deptno,dname,coun...