· 5 years ago · May 03, 2020, 02:06 PM
1CREATE TABLE IF NOT EXISTS TestTable(
2 value1 text,
3 value2 text,
4 value3 text
5);
6
7INSERT INTO app.TestTable(value1, value2, value3)
8VALUES
9 ('a', 'b', 'c'),
10 ('d', 'e', 'f'),
11 ('g', 'h', 'i'),
12 ('j', 'k', 'l')