Computer Science, asked by Shivamind, 1 year ago

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 siddhartharao77
8
Create table Brainly(Emp_no char(4), Name varchar(25), Salary float(6,2), Department Varchar(15));


Hope this helps!

Shivamind: How it can help
siddhartharao77: Didn't understand?
Shivamind: No
Shivamind: Can you tell
siddhartharao77: Tell me bhai what is your doubt
Shivamind: Ok sorry got it
Answered by bhagathmukesh07
1

let table name= employee

query..

create table employee(empno char(4), name varchar(25), salary float(10), department.field varchar(15)

Similar questions