重复记录,根据条件只取其中的一条记录的sql语句

2024-12-27 15:33:26
推荐回答(4个)
回答1:

select top 1 type from 表名 where owner_type='你的值' and player_id='你的值' order by type --desc

回答2:

select type from 表名where owner_type='你的值' and player_id='你的值'

回答3:

select type from table_name(你的表名) awhere a.owner_type='值1' and a.player_id='值2'

回答4:

and 连接一下两个值就行了