SELECT * FROM lzh_topic_channel_product ORDER BY order_id is null , order_id
其中的ORDER BY order_id is null ,mysql默认生序(asc),false为0 在true(1) 之前
如果使用ORDER BY order_id is null desc, 则空值排在非空之后
不实用is null 也可以使用函数 isnull(order_id)
SELECT * FROM lzh_topic_channel_product ORDER BY order_id is null , order_id
其中的ORDER BY order_id is null ,mysql默认生序(asc),false为0 在true(1) 之前
如果使用ORDER BY order_id is null desc, 则空值排在非空之后
不实用is null 也可以使用函数 isnull(order_id)