sqlserver排序的问题
有两个表
第一个:classInfo
字段有:classId,classname,px
第二个:contentInfo,
字段有id,title,content,classId
想实现,按照classinfo里的px的字段,来排列contentinfo的数据。怎么实现啊
------解决方案--------------------
select c.* from contentinfo c,classinfo i
where c.classid =i.classid
order by i.px
------解决方案--------------------SQL code
select * from contentInfo a
left join classInfo b on a.classid=b.classid
order by b.px