Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在尝试回答问题并发布 SQL 查询时遇到错误。
无用的错误消息是:提交编辑时发生错误
这是我尝试提交的内容:
select empname, phone, email from employee where emptype = 'PT' and salary between 30000 and 50000 order by city, faculty, empid;
为什么我可以在这里发布?我确实将它标记为代码 {}(4 个空格缩进)。
看来错误实际上是在我用来描述查询的文本中引起的。我有“选择列表”这个短语,但是当我改写它时它起作用了。但是这句话在这里有效——奇怪。
您需要将类型分配给 ORDER BY ASC 或 DESC
ORDER BY column1, column2, ... ASC|DESC;
前往 W3S