-- '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 );