how to create a table in sql
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");
Username or Email Address
Password