Write a set of SQL statements together to:
- create a new table
teachers with the following columns, data types and constraints.
| column | data type | constraint |
|---|
| id | INTEGER | UNIQUE |
|---|
| name | TEXT | UNIQUE |
|---|
| age | INTEGER | |
|---|
- add these record rows to the created table
teachers
| id (INTEGER) | name (TEXT) | age (INTEGER) |
|---|
| 1 | Phil | 29 |