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).
Answers
Answered by
178
let table name= employee
query..
create table employee(empno char(4), name varchar(25), salary float(10), department.field varchar(15));
I think it helps you
Please mark this answer as brainliest answer
query..
create table employee(empno char(4), name varchar(25), salary float(10), department.field varchar(15));
I think it helps you
Please mark this answer as brainliest answer
Similar questions