2016-02-22 49 views
-1

我想通過使用臨時表如何找到同一個城市和同樣的薪水記錄

+1

請解釋更多使用http://sqlfiddle.com/更好responces找到同樣多的城市,同樣的薪水記錄。 –

+3

你必須更好地解釋你的問題,不清楚你在問什麼。 \t請閱讀[**如何提問**](http://stackoverflow.com/help/how-to-ask) \t \t這裏是[** START **]( http://spaghettidba.com/2015/04/24/how-to-post-at-sql-question-on-a-public-forum/) –

回答

0
declare @t table 
    (
    City nvarchar(20), 
    Salary decimal(9, 2) 
    ) 

insert into @t 
     (City, Salary) 
values (N'New York', 65000), 
     (N'London', 68000), 
     (N'Sydney', 59000), 
     (N'Sydney', 59000), 
     (N'Tokyo', 66000) 

select * 
from @t as t 
group by t.City, 
     t.Salary 
having count(1) > 1 
+0

N是什麼用途? –

+0

http://stackoverflow.com/questions/10025032/what-is-the-meaning-of-the-prefix-n-in-t-sql-statements – Ralph

+0

它不起作用 –

相關問題