how to create a table in sql
how to create a table in sql
how to create a table in sql
vito Selected answer as best September 21, 2021
Create table query:
CREATE TABLE test(id int, name varchar(25));
This will create a table named ‘test’ with 2 columns ‘id’ and ‘name’
Insert query:
INSERT INTO test VALUES(1, "abc"),(2, "xyz");
vito Selected answer as best September 21, 2021