gpt4 book ai didi

mysql - 如何向现有 SQL 语句添加第二个条件?

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

所以问题要求我显示独立年份为 AAA 或既不在亚洲也不在欧洲的国家的名称、人口、大陆、独立年份和预期生命周期。

SELECT Name, Population, Continent, IndepYear, LifeExpectancy FROM country

WHERE (IndepYear = 'AAA' AND Continent IN ('Asia' , 'Europe')) OR IndepYear = 'AAA' ;

enter image description here enter image description here

我已经尝试了几乎所有的方法,但还是没能得到那个。任何指针将不胜感激

最佳答案

我读到的问题如下:

SELECT Name
, Population
, Continent
, IndepYear
, LifeExpectancy
FROM country
WHERE IndepYear = 'AAA'
AND Continent NOT IN ('Asia' , 'Europe');

关于mysql - 如何向现有 SQL 语句添加第二个条件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59797962/

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