SQL
不是哪吒是豹豹
一觉睡到天黑!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LeetCode刷题笔记(SQL-002)
626.Exchange SeatsSQL Schema(表结构)Create table If Not Exists seat(id int, student varchar(255));Truncate table seat;insert into seat (id, student) values ('1', 'Abbot');insert into seat (id, s...原创 2019-11-08 10:09:48 · 174 阅读 · 0 评论 -
LeetCode刷题笔记(SQL-001)
178.Rank ScoresSQL Schema(表结构)Create table If Not Exists Scores (Id int, Score DECIMAL(3,2));Truncate table Scores;insert into Scores (Id, Score) values ('1', '3.5');insert into Scores (Id, S...原创 2019-11-08 10:09:51 · 247 阅读 · 0 评论
分享