Latest Answer: An inline view is created by placing a subquery in the FROM clause and giving that subquery an alias. The subquery defines a data source that can be referenced in the main query. ...
Latest Answer: LEVELYou use LEVEL with the SELECT CONNECT BY statement to organize rows from a database table into a tree structure. LEVEL returns the level number of a node in a tree structure. The root is level 1, children of the root are level 2, grandchildren are ...
What is the difference between single quote (') and double quote(") in relates to using in SQL. When do you use 'xxx' and "xxx"? what is the difference both of them?
How to delete set of records at a time where all the records having same values , except the Rowid differs?
Latest Answer: the ROWNUM is a number(like serial no) which is dynamically changes.but the ROWID does not change.Because it is having the unique address,which is generated by the oracle ...
SESSION 1 SESSION 2 ---------------- -------------------- DELETE FROM EMP; SELECT * FROM EMP;What will be the result?
Latest Answer: select d.amount from (select t.tadichallan_amt amount,rank() over (order by t.tadichallan_amt desc) as Rank1 from tae_challan_det t where t.tadichallan_amt is not null )dwhere Rank1 between '&n' and '&d' ...
Latest Answer: The CASE statement supported by PL/SQL is very similar to the CASE expression. The main difference is that the statement is finished with an END CASE statement rather than just END. The PL/SQL statements are essentially an alternative to lists of IF .. ...
Latest Answer: Hi,what nachs has written is correct.Show error is use to find the compilation error not run time error.For runtime error of procedure we need to take help of exception Handling and that error may be user defined or system defined. but we can handle it ...
Latest Answer: We can change the column name. ...
View page << Previous 6 7 8 9 [10] 11 12 13 14 15 Next >>

Go Top