9 lines
282 B
SQL
Executable File
9 lines
282 B
SQL
Executable File
/*!40014 SET FOREIGN_KEY_CHECKS=0*/;
|
|
/*!40101 SET NAMES binary*/;
|
|
CREATE TABLE `quo``te/table` (
|
|
`quo``te/col` int NOT NULL,
|
|
`a` int DEFAULT NULL,
|
|
`gen``id` int GENERATED ALWAYS AS (`quo``te/col`) VIRTUAL,
|
|
PRIMARY KEY (`quo``te/col`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|