mysql table column name with special characters

Solutions on MaxInterview for mysql table column name with special characters by the best coders in the world

showing results for - "mysql table column name with special characters"
Henry
06 May 2020
1CREATE TABLE product (
2        id int NOT NULL AUTO_INCREMENT,
3        `item-name` VARCHAR(255) NOT NULL,
4        `item-description` TEXT,
5        `listing-id` VARCHAR(50),
6        PRIMARY KEY (id)
7    )