Well done, @name! You leave the scriptorium as a true builder of shelves. Here is what you have learned:
| Data | Type | |------|------| | whole numbers |
INT |
| amounts (with cents) | DECIMAL(8,2) |
| short text | VARCHAR(n) |
| long text | TEXT |
| date | DATE |
| date with time | DATETIME |
| true/false | BOOLEAN |
| list of options | ENUM(...) |ALTER TABLE ... ADD COLUMN ... - adds a column.ALTER TABLE ... MODIFY COLUMN ... - changes the type.ALTER TABLE ... DROP COLUMN ... - removes a column.ALTER TABLE ... RENAME TO ... - renames the table.DROP TABLE ... - removes the whole table (carefully!).You already have shelves. In the next location you will learn to place scrolls on them - that is, to insert, change and delete data with INSERT, UPDATE and DELETE. Onward, deeper into the Library!