Skip to content

Commit 7d116e8

Browse files
committed
updating formatting
1 parent d27fb1f commit 7d116e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
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
```
@@ -25,7 +25,7 @@ select name, city||' '||state as location from customer;
2525
select name, region|| ' ' || street_address || ',' || city || ',' || state || ',' || zip as shipping_address from customer;
2626
```
2727

28-
## Chapter 5 **WHERE** <a name =2>
28+
# Chapter 5 **WHERE** <a name =2>
2929
### Using Where on Numbers
3030
```
3131
select * from station_data where year>2005 and year<2010 ;
@@ -92,7 +92,7 @@ select year, sum(precipitation) from station_data group by year having precipit
9292
select DISTINCT STATION_NUMBER FROM STATION_DATA ORDER BY STATION_NUMBER ASC;
9393
```
9494

95-
## Chapter 7 **CASE Statements**
95+
# Chapter 7 **CASE Statements**
9696

9797
### The CASE Statement
9898
```
@@ -156,4 +156,4 @@ where year>2000
156156
group by month
157157
```
158158

159-
## Chapter 8 **JOIN**
159+
# Chapter 8 **JOIN**

0 commit comments

Comments
 (0)