高频SQL50题 第一天 | 1757. 可回收且低脂的产品、584. 探求用户保举人、59 ...

打印 上一主题 下一主题

主题 1000|帖子 1000|积分 3000

1757. 可回收且低脂的产品

   标题链接:https://leetcode.cn/problems/recyclable-and-low-fat-products/description/?envType=study-plan-v2&envId=sql-free-50
状态:已完成
  考点:无
  1. select product_id
  2. from Products
  3. where low_fats = 'Y' and recyclable = 'Y'
复制代码
584. 探求用户保举人

   标题链接:https://leetcode.cn/problems/find-customer-referee/description/?envType=study-plan-v2&envId=sql-free-50
状态:已完成
  考点:where子句的等值判断会自动忽略null值,因此必要增长判空逻辑
  1. select name
  2. from Customer
  3. where referee_id != 2 or referee_id is null
复制代码
595. 大的国家

   标题链接:https://leetcode.cn/problems/big-countries/description/?envType=study-plan-v2&envId=sql-free-50
状态:已完成
  考点:无
  1. select name, population, area
  2. from World
  3. where area >= 3000000 or population >= 25000000
复制代码
1683. 无效的推文

   标题链接:https://leetcode.cn/problems/invalid-tweets/description/?envType=study-plan-v2&envId=sql-free-50
状态:已完成
  考点:length()函数求解字符串的长度
  1. select tweet_id
  2. from Tweets
  3. where length(content) > 15
复制代码
1148. 文章浏览 I

   标题链接:https://leetcode.cn/problems/article-views-i/description/?envType=study-plan-v2&envId=sql-free-50
状态:已完成
  考点:修改列名(as),去重(distinct),排序(order by,默认升序)
  1. select distinct author_id as id
  2. from Views
  3. where author_id = viewer_id
  4. order by author_id
复制代码
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

杀鸡焉用牛刀

论坛元老
这个人很懒什么都没写!
快速回复 返回顶部 返回列表