We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d116e8 commit 570da1cCopy full SHA for 570da1c
README.md
@@ -1,6 +1,6 @@
1
# Queries for all the examples chapter-wise
2
3
-#Chapter 4 **SELECT** <a name='1'>
+# Chapter 4 **SELECT** <a name='1'>
4
5
### Retrieving Data
6
```
@@ -61,7 +61,7 @@ select * from station_data where snow_depth is NULL;
61
select report_code, coalesce(precipitation,0) as rainfall from station_data where precipitation <=0.5;
62
select * from station_data where (rain=1 and temperature<=32) or snow_depth>0;
63
64
-## Chapter 6 **GROUP BY and ORDER BY**
+# Chapter 6 **GROUP BY and ORDER BY**
65
### Grouping Records
66
67
select count(*) from station_data where tornado;
0 commit comments