求一个mysql的查询语句!!!!!
一个消息中心的功能,所有消息有已阅读和未阅读两种状态,现在我要的结果是,未阅读在前,已阅读在后面 并且都根据时间排序
table=message
阅读状态 read_status 0,1
time
------解决方案--------------------
select * from table order by read_status,time
------解决方案--------------------
未读(read_status为0)在前,已读(read_status为0)在后,根据时间升序排列
SQL code
SELECT * FROM MESSAGE ORDER BY READ_STATUS,TIME