Skip to content

Commit 570da1c

Browse files
committed
updating formatting
1 parent 7d116e8 commit 570da1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Queries for all the examples chapter-wise
22

3-
#Chapter 4 **SELECT** <a name='1'>
3+
# Chapter 4 **SELECT** <a name='1'>
44

55
### Retrieving Data
66
```
@@ -61,7 +61,7 @@ select * from station_data where snow_depth is NULL;
6161
select report_code, coalesce(precipitation,0) as rainfall from station_data where precipitation <=0.5;
6262
select * from station_data where (rain=1 and temperature<=32) or snow_depth>0;
6363
```
64-
## Chapter 6 **GROUP BY and ORDER BY**
64+
# Chapter 6 **GROUP BY and ORDER BY**
6565
### Grouping Records
6666
```
6767
select count(*) from station_data where tornado;

0 commit comments

Comments
 (0)