一道Sql面试题:如何使任意指定的一条记录(任意字段)在查询分析器里置顶?
select *,case when 任意字段='条件值' then 1 else 0 end ind from 表名 order by ind desc,主键 asc