Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit d7bbb9d

Browse files
Update README.md
1 parent 4a88eb6 commit d7bbb9d

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

‎SQL/README.md

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
1-
# Revising the Select Query I
1+
# `Revising the Select Query I`
22

3-
Query all columns for all American cities in the CITY table with populations larger than 100000.
3+
>Query all columns for all American cities in the CITY table with populations larger than 100000.
4+
>
5+
>The CountryCode for America is USA.
46
5-
The CountryCode for America is USA.
7+
<br>
68

79
The CITY table is described as follows:
810

9-
![image](https://github.com/imvickykumar999/hackerrank-codechef-leetcode/assets/50515418/e36c3712-e00d-4e27-a46a-ba9ce48fe79d)
11+
>![image](https://github.com/imvickykumar999/hackerrank-codechef-leetcode/assets/50515418/e36c3712-e00d-4e27-a46a-ba9ce48fe79d)
12+
13+
<br>
14+
15+
### **`Solution`:**
1016

1117
```SQL
1218
select * from city where population > 100000 and countrycode = 'USA';
1319
```
1420

15-
***More*** [`Solutions`](https://www.hackerrank.com/domains/sql?filters%5Bsubdomains%5D%5B%5D=select)
21+
<br>
22+
23+
***More*** [`Questions`](https://www.hackerrank.com/domains/sql?filters%5Bsubdomains%5D%5B%5D=select)

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /