Really? you sure? I thought that was working correctly last I looked.
CREATE TABLE Clipboard (
"_____ABC" VARCHAR(255) NULL,
"2211" VARCHAR(255) NULL,
"_22ABC" VARCHAR(255) NULL
);
INSERT INTO Clipboard ("_____ABC","2211","_22ABC") VALUES
( '111','222',null ),
( 'zzz','1212 ','1212' ),
( 'aaa','1212',null )
Yeah, seems like we missed quoting around the table name?
Please open an issue.
We went with double quotes " " because most database vendors use them as the default "quoted identifier" or "delimited identifier". (MySQL loves being different...always.)