LeetCode資料庫題 有趣的電影

2021-09-27 13:09:55 字數 1525 閱讀 3826

某城市開了一家新的電影院,吸引了很多人過來看電影。該電影院特別注意使用者體驗,專門有個 led顯示板做電影推薦,上面公布著影評和相關電影描述。

作為該電影院的資訊部主管,您需要編寫乙個 sql查詢,找出所有影片描述為非 boring (不無聊) 的並且 id 為奇數 的影片,結果請按等級 rating 排列。

例如,下表 cinema:+--

-------

+------

-----+

----

----

------+

----

-------

+| id | movie | description | rating |+--

-------

+------

-----+

----

----

------+

----

-------

+|1| war | great 3d |

8.9||2

| science | fiction |

8.5||3

| irish | boring |

6.2||4

| ice song | fantacy |

8.6||5

| house card| interesting|

9.1|+--

-------

+------

-----+

----

----

------+

----

-------

+對於上面的例子,則正確的輸出是為:+--

-------

+------

-----+

----

----

------+

----

-------

+| id | movie | description | rating |+--

-------

+------

-----+

----

----

------+

----

-------

+|5| house card| interesting|

9.1||1

| war | great 3d |

8.9|+--

-------

+------

-----+

----

----

------+

----

-------

+

select * from cinema where not description=

'boring' and not id%2=

0 order by rating desc;

LeetCode刷題 資料庫

目錄 175.組合兩個表 176.第二高的薪水 表1 person 列名 型別 personid int firstname varchar lastname varchar personid 是上表主鍵表2 address 列名 型別 addressid int personid int city...

LeetCode資料庫題 超過經理收入的員工

employee 表包含所有員工,他們的經理也屬於員工。每個員工都有乙個 id,此外還有一列對應員工的經理的 id。id name salary managerid 1 joe 70000 3 2 henry 80000 4 3 sam 60000 null 4 max 90000 null 給定 ...

資料庫課後題

1 域,笛卡爾積,關係,元組,屬性 答 域是一組具有相同資料型別的值的集合。笛卡爾積是域裡面的一種運算,類似集合之間相乘。笛卡爾積的子集成為關係。元組就是表裡面的一行也是關係裡的每乙個元素。屬性就是表裡面的一列,因為每列對應乙個域,為了區分稱每列為屬性。2 主碼,候選碼,外碼 答 主碼是若乙個關係由...