Create a query that will display the total no.of employees and, of that total, the no.of employees hired in 1995,1996,1997, and 1998. create appropriate column headings.
Write a query that displays the difference between the highest and lowest salaries. Label the column DIFFERENCE.
Latest Answer: SELECT job, count(*) AS no.ofemployee FROM emp GROUP BY job; ...
Create a query that display the last name,hire date and the day of the week on which the employee started. Label the column DAY. Order the results by the day of the week starting with Monday.LAST_NAME HIRE_DATE DAYGrant 24-MAY-99 MONDAYErnst 21-MAY-99 TUESDAYMourgos 16-NOV-99 TUESDAY------- ----- SUNDAY
I want to try create the database from my script which i made.can help me how to run a script. can explain me step by step because i am a starter.thank's
Latest Answer: A snapshot is a read-only copy of a master table / output of a query based on multiple tables located on a remote location.Once these are read only so can not have DML statments. Yes they can be refeshed periodically based ...
Latest Answer: rownum is generated for the data retrieved and stored in an implicit cursor so depending on the outcum it may varry where as rowid is generated automatically for creation of every row,hence forth if we want retrive a particular row in a table we ...
Variable portionThe variable portion is called variable because its size (measured in bytes) can be changed. The variable portion consists of: • large pool (optional)Provides working space for rman
Latest Answer: Sequence is used to generate numbers which can be stored in tables. View does not have data of its own and is generally used to query data. So sequence can not be created to a view. ...
Latest Answer: this statement is supported by the prescence of cube and rollup operators in oracle 9i which indicates that it is a multidimensional dbs ...
View page << Previous 1 2 [3] 4 5 Next >>

Go Top