Answers for "mysql column name special characters"

SQL
0

mysql table column name with special characters

CREATE TABLE product (
        id int NOT NULL AUTO_INCREMENT,
        `item-name` VARCHAR(255) NOT NULL,
        `item-description` TEXT,
        `listing-id` VARCHAR(50),
        PRIMARY KEY (id)
    )
Posted by: Guest on June-21-2020

Code answers related to "mysql column name special characters"

Code answers related to "SQL"

Browse Popular Code Answers by Language