Can't create a table in MySQL because “it already exists”

前端 未结 3 2131
无人共我
无人共我 2020-12-22 01:54

I am having an issue with MySQL, relating to my previous question.

I recently needed to remove a table from MySQL, and now need to create a new one in its place. I a

3条回答
  •  一向
    一向 (楼主)
    2020-12-22 02:23

    As the table exists then just remove it with drop table (http://dev.mysql.com/doc/refman/5.6/en/drop-table.html)

    i.e.

    drop table 

    You must have done something wrong as the table still exists.

    Can check this with select

    i.e.

    select * from 

    提交回复
    热议问题