Re: CREATE TABLE does not get updated
You'll need to DROP table birthday_1 before you can create it (again) with different columns.
You'll find that the second CREATE TABLe ... is failing, and then the error code 1136 you get is beacuse you are trying to add 4 values to 3 columns (Column count doesnt match value count at row 1)
Or, add the new column with ALTER TABLE ...
https://dev.mysql.com/doc/refman/8.0/en/alter-table.html
Good luck,
Barry.
Subject
Written By
Posted
February 06, 2023 12:55PM
Re: CREATE TABLE does not get updated
February 06, 2023 06:41PM
February 07, 2023 08:16AM
February 07, 2023 05:11PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.