4e54075078
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
27 lines
487 B
SQL
27 lines
487 B
SQL
-- lower case, upper case, and quoted table names
|
|
create table lower_table (
|
|
id integer primary key
|
|
);
|
|
|
|
CREATE TABLE UPPER_TABLE (
|
|
id integer primary key
|
|
);
|
|
|
|
-- std sql quoted table name
|
|
create table "Quoted Table" (
|
|
id integer primary key
|
|
);
|
|
|
|
-- sqlite quoted table name
|
|
create table `Quoted Table2` (
|
|
id integer primary key
|
|
);
|
|
|
|
create table "UPPER_QUOTED" (
|
|
id integer primary key
|
|
);
|
|
|
|
create table "A""B" (
|
|
id integer primary key
|
|
);
|