8 lines
209 B
SQL
8 lines
209 B
SQL
CREATE TABLE IF NOT EXISTS greetings (
|
|
id INT AUTO_INCREMENT PRIMARY KEY,
|
|
message VARCHAR(255) NOT NULL
|
|
);
|
|
|
|
INSERT INTO greetings (message) VALUES ('Hello, Im puneet khurana from MySQL tech team !');
|
|
|