SELECT 字段名[ , 字段名...] FROM 表名 WHERE 条件 LIMIT 数量 ORDER BY 字段名 DESC
例如:
1
select id,name,email from test where age <19 limit 5 order by id desc
上面例子从test表查询所有age小于19的按id降序排序的前5条记录的id,name,email信息。
LIMIT限制查询数量,ORDER BY指出按什么排序,DESC表示按降序排序。
用union all吧,伪代码如下:(select * from wenzhang where type='置顶')union all select * from (select * from wenzhang where type!='置顶' order by time) as tmp
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)