Write an SQL query to create a table with the following structure. field : empno , name , salary , department . field : char (4) , varchar (25) , float , varchar (15).
TELL ME THE METHOD OF DOING THIS KIND OF QUESTIONS
Answers
Answered by
2
create table table name(write the name of your table here)(empno char(4), name varchar(25), salary float,department varchar(15));
Similar questions