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 35f2311

Browse files
2 parents 10731dc + d7bbb9d commit 35f2311

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

‎SQL/README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
1-
# Revising the Select Query I
1+
# `Revising the Select Query I`
22

33
mysql -u root -p
4+
5+
>Query all columns for all American cities in the CITY table with populations larger than 100000.
6+
>
7+
>The CountryCode for America is USA.
48
5-
Query all columns for all American cities in the CITY table with populations larger than 100000.
6-
7-
The CountryCode for America is USA.
9+
<br>
810

911
The CITY table is described as follows:
1012

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

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

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

0 commit comments

Comments
(0)

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