Write an SQL query to create the table for following
Field. Type
Emp_no. Char(4)
Name. Varchar(25)
Salary. Float
Department. Varchar (15)
Answers
Answered by
8
Create table Brainly(Emp_no char(4), Name varchar(25), Salary float(6,2), Department Varchar(15));
Hope this helps!
Hope this helps!
Shivamind:
How it can help
Answered by
1
let table name= employee
query..
create table employee(empno char(4), name varchar(25), salary float(10), department.field varchar(15)
Similar questions