Posted by: k_ho_k_life December 23, 2016
Need help in SQL....
Login in to Rate this Post:     0       ?        
I am also learning IT so this is only suggestion.

CREATE table employee
(firstName varchar(15),
lastName varchar(20),
age number(3),
address varchar(30),
city varchar(20),
state varchar(20));

It will create a table named "employee" where there are different variables: firstName, lastName, age, address, city and state.(these are column as your question)

hope this help
Read Full Discussion Thread for this article