Mysql
 sql >> Database >  >> RDS >> Mysql

Java/Mysql..SQLException:una tabella deve avere almeno 1 colonna SQLState:42000 VendorError:1113

CREATE TABLE IF NOT EXISTS db_table

Non hai specificato alcuna colonna, che è esattamente ciò che ti ha detto il messaggio di errore. La sintassi corretta è

CREATE TABLE IF NOT EXISTS db_table (
    column_name1        datatype,
    column_name2        datatype,
    etc.
)