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, NOT NULL |
|---|
| age | INTEGER | NOT NULL |
|---|
- add these record rows to the created table
teachers
| id (INTEGER) | name (TEXT) | age (INTEGER) |
|---|
| 1 | May | 32 |