此表我想创建
job_id dynamic
Jobs Title text
Job Description text
job_Order combo box to choose after what job
or at first position in the website
我创建表单以添加作业,我想创建组合框以选择如何在职业页面中的第一个位置查看。我使用job_id来选择第一个位置,当选择数据按job_order调用顺序时
这是真的或其他解决方案
谢谢
答案 0 :(得分:0)
我正在阅读的内容是:用户将使用job_id作为参考在一个页面上添加作业。您的问题是如何在职业页面上对工作进行排序?在检索要在职业页面上显示的数据时,你能不只是“ORDER BY job_Order”?
答案 1 :(得分:0)
尝试:
select *, case when job_Order is null then 1 else 0 end as Rank
from job
order by Rank, job_Order, job_id