Create a table
Add data to a table
Update data in a table
Delete data from a table
There are two more operations relating to tables that you’ll learn about: how to update the structure of a table, and how to delete a table.
Why Update the Structure of a Table?
In SQL, you can update the structure of your table. This means you can add or remove columns, rename columns, rename tables, change data types of columns, and more. Why would you want to do this? There ...