查詢語句 查兩個表中的某向個字段資料

2021-05-28 15:58:08 字數 791 閱讀 3505

--索引為31-40的資料

select top 10 * from orderitems where id not in (select top 30 id from orderitems)

--複製資料

insert into  distinctselect(username,state,ordertime) select username,state,ordertime from orderitems

--去除所有重複的記錄(完全重複)

select distinct username ,id, state,ordertime into #table1 from [distinctselect] 

delete from [distinctselect]

insert into [distinctselect](username,state,ordertime) select username,state,ordertime from #table1

drop table #table1

--刪除某列重複的記錄

delete   t   

from   [distinctselect]   t   

where   exists   (   

select   1   from   [distinctselect]  where   username=t.username   and   idselect * from [distinctselect] order by username

delete from [distinctselect]

sql中兩個表的某列相減 sql兩個字段相減語句

sql 兩個字段相減語句本文章搜尋了大量來自網路的關於sql 兩個字段相減語句與函式 舉例說明了兩個字段相減做法。sql 兩個字段相減語句 本文章搜尋了大量來自網路的關於sql 兩個字段相減語句與函式 舉例說明了兩個字段相減做法。select a.欄位1,欄位2 a.欄位2 isnull selec...

查詢表中兩個欄位的日期間隔之差

select timestampdiff year,開始日期字段,結束日期字段 from 表名 兩日期間隔年 select timestampdiff quarter,開始日期字段,結束日期字段 from 表名 兩日期間隔季 select timestampdiff month,開始日期字段,結束日...

sql server 更新兩個表的某個字段

臨時表 create table tmp cup a varchar 20 b varchar 50 c varchar 20 select from t customer 更新簡稱字列 update t customer set shortname select shortname from tm...