Forward Engineering MySQL Workbench Error 1064

前端 未结 3 774
后悔当初
后悔当初 2021-01-27 17:36

I made a EER diagram and I am trying to Forward Engineer it but I get this error and I can\'t find the mistake.

Executing SQL script in server ERROR: Erro

相关标签:
3条回答
  • 2021-01-27 17:57

    Before you forward engineering tick the below options and continue the process,

    Go to the option section > Under the set options for Database to be created

    • Skip creation of foreign keys
    • Skip creation of Indexes as well
    • generate separate create index statements
    • Generate Insert statement for table

    And continue the forward engineering process.

    0 讨论(0)
  • 2021-01-27 17:58

    can you add engine

    ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci

    0 讨论(0)
  • 2021-01-27 17:58

    This is mysql version issue Remove the VISIBLE. and run the code manually . Or update mysql server and the client into same version . (Wallets_idWallets ASC) VISIBLE into (Wallets_idWallets ASC)

    0 讨论(0)
提交回复
热议问题