Skip to content

Commit c7de30e

Browse files
committed
feat: update sql solution to lc problems: No.0620
No.0620.Not Boring Movies
1 parent 3ee47f4 commit c7de30e

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

solution/0600-0699/0620.Not Boring Movies/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@
4747

4848
### **SQL**
4949

50-
```
50+
```sql
5151
SELECT *
5252
FROM cinema
5353
WHERE description NOT LIKE '%boring%'
54-
AND mod(id,2)=1
55-
ORDER BY rating desc;
54+
AND mod(id, 2) = 1
55+
ORDER BY rating desc;
5656
```
5757

5858
<!-- tabs:end -->

solution/0600-0699/0620.Not Boring Movies/README_EN.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@ We have three movies with odd-numbered IDs: 1, 3, and 5. The movie with ID = 3 i
6060

6161
### **SQL**
6262

63-
```
63+
```sql
6464
SELECT *
6565
FROM cinema
6666
WHERE description NOT LIKE '%boring%'
67-
AND mod(id,2)=1
68-
ORDER BY rating desc;
67+
AND mod(id, 2) = 1
68+
ORDER BY rating desc;
6969
```
7070

7171
<!-- tabs:end -->
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SELECT *
22
FROM cinema
33
WHERE description NOT LIKE '%boring%'
4-
AND mod(id,2)=1
5-
ORDER BY rating desc;
4+
AND mod(id, 2) = 1
5+
ORDER BY rating desc;

0 commit comments

Comments
 (0)