SQLZOO习题练习

最近开始学习mysql,做SQLZOO上面的题,下面部分题目的思路:

**Q1: Equatorial Guinea and Dominican Republic have all of the vowels (a e i o u) in the name. They don’t count because they have more than one word in the name.

Find the country that has all the vowels and no spaces in its name.
You can use the phrase name NOT LIKE ‘%a%’ to exclude characters from your results.
The query shown misses countries like Bahamas and Belarus because they contain at least one ‘a’.**
在这里插入图片描述
大意是查询world表中所有元音字母(a e i o u)都出现并只出现一次,而且名字只包含一个单词的国家(可以理解为没有空格)。
这里需要考虑三部分内容:①元音字母都出现;②每个元音字母只出现一次;③名字只包含一个单词。
思路一:

SELECT name FROM world
WHERE name LIKE '%a%' AND (length(name) - length(replace(name,'a','')) = 1)
AND name LIKE '%e%' AND (length(
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值