sqlfun/tst-create-table1.sql
Jeff Garzik 0a18c5ef1a Begin conversion of stdout data to JSON stream.
Tested with tst-create*.sql new tests.
2019-01-04 23:15:46 -05:00

7 lines
194 B
SQL

create table if not exists TheTableName (
id int(11) not null auto_increment primary key,
region varchar(32) not null,
data_size bigint not null default '0',
createtime datetime not null
);