Write a set of SQL statements together to:
- create a new table
teachers
with the following columns and data types.
column | data type |
---|
id | INTEGER |
name | TEXT |
age | INTEGER |
- add these record rows to the created table
teachers
id (INTEGER) | name (TEXT) | age (INTEGER) |
---|
1 | Heisenburg | 32 |
2 | Feynman | 28 |
3 | Rutherford | 35 |