I can't insert new rows into a table / I can't create a table - MySQL brings up a SQL error. ΒΆ
Examine the SQL error with care. Often the problem is caused by specifying a wrong column-type. Common errors include:
- Using
VARCHAR
without a size argument - Using
TEXT
orBLOB
with a size argument
Also, look at the syntax chapter in the MySQL manual to confirm that your syntax is correct.