摘要: 【以下题目来源均来自力扣leetcode】 595. 大的国家 World 表: 【描述】name 是这张表的主键。这张表的每一行提供:国家名称、所属大陆、面积、人口和 GDP 值。 【问题】如果一个国家满足下述两个条件之一,则认为该国是 大国 :面积至少为 300 万平方公里(即,3000000 阅读全文
posted @ 2022-09-03 22:58 徐若离 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 01 某音短视频 SQL156 各个视频的平均完播率 【描述】用户-视频互动表tb_user_video_log。(uid-用户ID, video_id-视频ID, start_time-开始观看时间, end_time-结束观看时间, if_follow-是否关注, if_like-是否点赞, i 阅读全文
posted @ 2022-07-14 19:34 徐若离 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 01检索数据 SQL60 从 Customers 表中检索所有的 ID 编写 SQL 语句,从 Customers 表中检索所有的cust_id select * from Customers; SQL61 检索并列出已订购产品的清单 【问题】编写SQL 语句,检索并列出所有已订购商品(prod_i 阅读全文
posted @ 2022-07-05 19:28 徐若离 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: user_profile表: id device_id gender age university province 1 2138 male 21 北京大学 Beijing 2 3214 male 复旦大学 Shanghai 3 6543 female 20 北京大学 Beijing 4 2315 阅读全文
posted @ 2022-06-18 15:29 徐若离 阅读(561) 评论(0) 推荐(0) 编辑
摘要: CITY表: Field Type ID number NAME VARCHAR2(17) COUNTRYCODE VARCHAR2(3) DISTRICT VARCHAR2(20) POPULATION number 1.Revising the Select Query I Query all 阅读全文
posted @ 2022-06-02 11:31 徐若离 阅读(382) 评论(0) 推荐(0) 编辑
摘要: teacher表: iddeptnamephonemobile 101 1 Shrivell 2753 07986 555 1234 102 1 Throd 2754 07122 555 1920 103 1 Splint 2293 104 Spiregrain 3287 105 2 Cutflow 阅读全文
posted @ 2022-05-27 17:42 徐若离 阅读(62) 评论(0) 推荐(0) 编辑
摘要: movie Field nameTypeNotes id INTEGER An arbitrary unique identifier title CHAR(70) The name of the film - usually in the language of the first release 阅读全文
posted @ 2022-05-19 23:04 徐若离 阅读(83) 评论(0) 推荐(0) 编辑
摘要: game表: idmdatestadiumteam1team2 1001 8 June 2012 National Stadium, Warsaw POL GRE 1002 8 June 2012 Stadion Miejski (Wroclaw) RUS CZE 1003 12 June 2012 阅读全文
posted @ 2022-05-18 17:49 徐若离 阅读(88) 评论(0) 推荐(0) 编辑
摘要: World Country Profile: Aggregate functions This tutorial is about aggregate functions such as COUNT, SUM and AVG. An aggregate function takes many val 阅读全文
posted @ 2022-05-13 12:25 徐若离 阅读(46) 评论(0) 推荐(0) 编辑
摘要: This tutorial looks at how we can use SELECT statements within SELECT statements to perform more complex queries. namecontinentareapopulationgdp Afgha 阅读全文
posted @ 2022-05-12 18:58 徐若离 阅读(81) 评论(0) 推荐(0) 编辑