MySQLDropTable.g4 206 字节
Newer Older
1 2 3 4 5 6 7 8
grammar MySQLDropTable;
import MySQLKeyword, DataType, Keyword,MySQLBase,BaseRule,Symbol;

dropTable:
    DROP TEMPORARY? TABLE (IF EXISTS)?
    tableName (COMMA tableName)* 
    (RESTRICT | CASCADE)?
    ;