1

データベースの各レコードには複数の列があります。

列 Xと列Y の両方で上位 100 レコードに属するレコードを選択する方法は?

4

1 に答える 1

4
select *
from table_name
where column_x in (
    select top 100 column_x
    from table_name 
    order by column_x )
and column_y in (
    select top 100 column_y
    from table_name
    order by column_y );
于 2013-01-16T21:53:05.010 に答える