如何从下面的DDL文件中的每个表中提取列名和数据类型。
-- Create statement 1
-- Some text
Create table Test1(
id int,
name string
);
Create table Test2(
id int,
city string
)
每个表的输出应如下所示-
[{"column":"id","dataType":"int"},
{"column":"name","dataType":"string"}]
[{"column":"id","dataType":"int"},
{"column":"city","dataType":"string"}]