Altering Existing Table in Database
                          
                          Add New Column
                          Assuming we want to add a new column called “phone_number” to the existing table “employee” in the database “zygnovadb”, you can follow these steps:
                          1.	Open MySQL Workbench and establish a connection to the MySQL server.
                          2.	Select the 'zygnovadb' database from the schema list.
                          3.	In the SQL Editor, enter the following SQL statement to add the new column:
                          ALTER TABLE employee
ADD COLUMN phone_number VARCHAR(255);
                          4.	This statement adds a new column named 'phone_number' to the 'employee' table with a data type of VARCHAR and a maximum length of 255 characters. You can modify the data type and length based on your specific requirements.
                          5.	Execute the SQL statement by clicking the 'Execute' button or pressing Ctrl+Enter.
                          6.	The table 'employee' will be altered, and the new column 'phone_number' will be added.
                          7.	You can verify the changes by viewing the structure of the 'employee' table in the MySQL Workbench or by executing a SELECT query to retrieve the table's information.
                          By following these steps, you can successfully add a new column to an existing table in the 'zygnovadb' database using MySQL Workbench.
                          
                          Changing/Modifying a Column
                          To change a column, let’s say in this example, we want to change the column from "phone_number" to "email" in an existing table named "employee" within the "zygnovadb" database, you can use the following SQL statement:
                          ALTER TABLE employee
CHANGE COLUMN phone_number email <column_definition>;
                          Replace <column_definition> with the original definition of the column, including the data type and any additional constraints.
                          Here's an example of how the SQL statement would look:
                          ALTER TABLE employee
CHANGE COLUMN phone_number email VARCHAR(15) NOT NULL;
                          This command will modify the column name from "phone_number" to "contact" and update its definition accordingly.
                          Please note that altering a column may involve other considerations, such as data integrity and the impact on existing data. Make sure to back up your database before making any structural changes and review the documentation for your specific database management system for further guidance.
                          
                          Renaming a Column
                          1. Open MySQL Workbench and connect to your MySQL server.
                          2. In the SQL editor, make sure you have selected the appropriate database by executing the following command:
                          USE zygnovadb;
                          3. Replace zygnovadb with the name of your database.
                          4. To rename a column in an existing table, you can use the ALTER TABLE statement with the RENAME COLUMN clause. The syntax is as follows:
                          ALTER TABLE table_name
RENAME COLUMN old_column_name TO new_column_name;
                          5. Replace table_name with the name of your table, old_column_name with the current name of the column you want to rename, and new_column_name with the desired new name for the column.
                          6. For example, if you want to rename the column "phone_number" to "contact" in the "employee" table, you would execute the following command:
                          ALTER TABLE employee
RENAME COLUMN phone_number TO contact;
                          7. This command will rename the column from "phone_number" to "contact" in the "employee" table.
                          
8. Execute the ALTER TABLE statement by clicking the "Execute" button or pressing Ctrl+Enter.
                          9. MySQL Workbench will execute the statement and rename the specified column in the table. Make sure to verify the changes by checking the table structure or querying the table to see the updated column name.
                          Using the RENAME COLUMN syntax provides a direct and concise way to rename a column in MySQL.
                          
                          RENAME vs CHANGE
                          RENAME: The RENAME statement is used specifically for renaming database objects such as tables or columns. With RENAME, you can rename a table or a specific column within a table. For example, you can rename a table from "table1" to "table2" or rename a column from "column1" to "column2".
                          Syntax for renaming a table:
                          RENAME TABLE old_table_name TO new_table_name;
                          Syntax for renaming a column:
                          ALTER TABLE table_name
RENAME COLUMN old_column_name TO new_column_name;
                          CHANGE: The CHANGE statement is used within an ALTER TABLE statement and is primarily used to modify the definition of a column in terms of its name, data type, and other attributes. It allows you to change the name, data type, or other properties of an existing column.
                          Syntax for changing a column using CHANGE:
                          ALTER TABLE table_name
CHANGE COLUMN old_column_name new_column_name new_data_type;
                          The key difference is that RENAME is specifically for renaming objects (tables or columns), while CHANGE is used to modify the definition of a column within an ALTER TABLE statement. Depending on your requirement, you would choose the appropriate statement to achieve the desired result.