lint all files

This commit is contained in:
2024-01-16 13:48:46 +00:00
parent b515ba4458
commit a321b0ce99
45 changed files with 66985 additions and 23206 deletions

View File

@@ -169,6 +169,7 @@ SELECT origin FROM pirates;
## Workshop 1 (10:00)
- Implement the two tables using the SQL CREATE TABLE command.
```sql
CREATE TABLE employee(
empNo INTEGER PRIMARY KEY
@@ -204,4 +205,4 @@ SELECT empNo, eName
FROM employee
INNER JOIN manager
ON employee.empNo = manager.empNo;
```
```