SQL Server一個特殊查詢(http://searchdatabase.techtarget.com.cn/tips/206/2295706.shtml)

來源:互聯網
上載者:User
 我有一個問題,是關於SQL Server 查詢的,求一查詢語句商品編碼唯一,同一商品取單價為最低一條記錄。問題如下: 
商品編碼     數量    單價       供應商
001         20       0.3       工商企業
001         50       0.1       AB企業
002         100      1.2       OK企業
003         200      2.4       AB企業
003         500      1.2       SQ企業

       求一查詢語句商品編碼唯一,同一商品取單價為最低一條記錄,結果如下:

商品編碼     數量    單價       供應商
001         50       0.1       AB企業
002         100      1.2       OK企業
003         500      1.2       SQ企業

回答一:

--測試環境
Declare @t table(商品編碼 varchar(10),數量 int,單價 decimal(4,2),供應商 varchar(10))
insert into @t select '001',20,0.3,'工商企業'
union all select '001',50,0.1,'AB企業'
union all select '002',100,1.2,'OK企業'
union all select '003',200,2.4,'AB企業'
union all select '003',500,1.2,'SQ企業'
--查詢
select * from @t A
where not exists (select 1 from @t where 商品編碼=A.商品編碼  and 單價<A.單價)
--結果
商品編碼       數量          單價     供應商       
---------- ----------- ------ ----------
001        50          .10    AB企業
002        100         1.20   OK企業
003        500         1.20   SQ企業

(所影響的行數為 3 行)

回答二:

Declare @t table(商品編碼 varchar(10),數量 int,單價 decimal(4,2),供應商 varchar(10))
insert into @t select '001',20,0.3,'工商企業'
union all select '001',50,0.1,'AB企業'
union all select '002',100,1.2,'OK企業'
union all select '003',200,2.4,'AB企業'
union all select '003',500,1.2,'SQ企業'
union all select '004',500,1.2,'SQ企業'
union all select '003',500,1.2,'SQ企業'
select a.* from @t a,(select 商品編碼,min(單價) aaa from @t group by 商品編碼)as aa
where aa.商品編碼=a.商品編碼 and a.單價=aa.aaa

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.