Answers for "mysql table create data"

SQL
0

how to create a table in mysql

-- 'CREATE TABLE' followed by the name of the table. 
-- In round brackets, define the columns.
CREATE TABLE `test_table` 
(
  id INT(10) PRIMARY KEY,			
  username VARCHAR(50) NOT NULL
);
Posted by: Guest on February-18-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language