26.06.2018, 15:39
The table has been created. No matter how many times you modify the query above and execute it, it will fail because there is already a table with this name. Next time, use
so your changes will take effect.
PS: You have many columns, many of those can be split to multiple tables.
pawn Code:
ALTER TABLE users MODIFY [COLUMN] col_name column_definition;
PS: You have many columns, many of those can be split to multiple tables.