Add Column to an Existing Table using ALTER TABLE
To add a column to an existing table using ALTER TABLE: Copy ALTER TABLE table_nameADD new_column_name data_type The Example Suppose that you have a table called products. The ‘products’ table currently contains the following columns and data: product_id product_name 1 Desktop Computer 2 Laptop 3 Tablet 4 Monitor 5 Printer The ultimate goal is to add … Read more