blob: 58724c8b13a966579f785df701c2a8acecb3575d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CREATE TABLE test(
id int,
fl numeric(5,2),
string varchar(30),
boolean bool,
dt timestamp,
ts time);
INSERT INTO test VALUES(4, 123.45, 'some text', true, '2015-04-27 23:06:03', '38:13:12');
CREATE TABLE bulktest(
intcol int,
stringcol varchar(3000));
|