gpt4 book ai didi

mysql - SQL 需要 'with' 命令

转载 作者:行者123 更新时间:2023-11-29 09:24:14 24 4
gpt4 key购买 nike

我最近开始使用 MySQL,但遇到了一个问题。我使用 create table 创建了两个表命令和表中插入的值。这两个命令执行成功。然后我尝试使用 select命令。当我尝试执行此命令时,它显示

"select" is not valid at this position for this server version, expecting: (, WITH

这是我的命令:

 select 
*
from Employee,
where Gender="M" and NativePlace="Mumbai",
order Hobby by desc;

这是什么原因?

最佳答案

您的查询中有几个语法错误,请尝试以下操作:

select 
*
from Employee
where Gender='M' and NativePlace='Mumbai'
order by Hobby desc;

关于mysql - SQL 需要 'with' 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59873466/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com