在SQL中,可以使用以下语法来批量创建表:
CREATE TABLE table1 ( column1 datatype, column2 datatype, ... ); CREATE TABLE table2 ( column1 datatype, column2 datatype, ... ); CREATE TABLE table3 ( column1 datatype, column2 datatype, ... );
在上面的示例中,可以依次创建多个表,每个表的结构由列名和数据类型定义。可以根据需要添加更多的表和列。请确保每个表的定义在单独的语句中,并在每个表的定义之间使用分号分隔。