Update 06-sql-joins-aggregation.md (#3)

This commit is contained in:
Kachwal Uttam Sharma 2022-08-11 00:11:53 +05:30 committed by GitHub
parent f41736d40e
commit b99e7fd973
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ For example, we want to get the batch names of all the students along with their
This can be achieved by using the following SQL query:
```sql
SELECT s.first_name, s.last_name, b.batch_name FROM students s JOIN batches ON s.batch_id = b.id;
SELECT s.first_name, s.last_name, b.batch_name FROM students s JOIN batches b ON s.batch_id = b.id;
```
### Left Outer Join