Do 1: In Oracle Apex, create a table named “employees” give the table the following columns:
Column name | data type |
employeeID | Number |
employeeName | Varchar2(50) |
salary | Number |
datehired | Date |
Create the database script that builds the above table
Dear Student ,
As per the requirement submitted above , kindly find the below solution.
1.Table Name :employees
create table employees(
employeeID Number primary key,
employeeName Varchar2(50),
salary Number,
datehired Date
);
Table structure in Oralce APEX :
NOTE : PLEASE FEEL FREE TO PROVIDE FEEDBACK ABOUT THE SOLUTION.
Get Answers For Free
Most questions answered within 1 hours.