- Get link
- X
- Other Apps
- Get link
- X
- Other Apps
Create table emp with attributes (eid number,ename varchar2(10),age number,salary number)
- Count number of employee names from employee table.
- Display the Sum of age employee table.
- Find grouped salaries of employees.(group by clause).
- Find salaries of employee in Ascending Order.(order by clause).
- Find salaries of employee in Descending Order.
Answer:
Command for Creation of Table:
CREATE TABLE EMP (EID_NUMBER NUMBER, ENAME VARCHAR2(10), AGE NUMBER, SALARY NUMBER);
Command for inserting data into table:
- Get link
- X
- Other Apps
Comments
Post a Comment