Matthew Huntington 2 years ago
parent e796875b3b
commit c12c45bd2d

Binary file not shown.

@ -89,6 +89,11 @@ SELECT DISTINCT city FROM people;
### Unions ### Unions
```sql
SELECT name FROM people UNION SELECT name FROM companies; -- show distinct values
SELECT name FROM people UNION ALL SELECT name FROM companies; -- show duplicates
```
### Truncate ### Truncate
### Triggers ### Triggers

Loading…
Cancel
Save