-1

I have a huge SQL file, and I want it to not insert a specific table.

The code is

CREATE TABLEW IF NOT EXISTS 'table_name'

Is there some way to ignore it all somehow? I don't want this table to be created, but I can't remove about a million lines manually.

4

1 回答 1

1

在执行脚本之前创建表。如果它create table blah if not exists ...已经存在,那么如果表已经存在,它将跳过该语句。

于 2013-06-06T22:38:47.863 回答