5 lines
303 B
Text
5 lines
303 B
Text
statement ok
|
|
CREATE TABLE kanto.myschema.mytable (mycolumn BIGINT NOT NULL, PRIMARY KEY(mycolumn));
|
|
|
|
statement error ^External error: unimplemented_sql/54xqh7ornzpso: REPLACE INTO \(MySQL syntax\) or INSERT OR REPLACE \(SQLite syntax\)$
|
|
REPLACE INTO kanto.myschema.mytable (mycolumn) VALUES (42), (13);
|