What is t sql in sql server?
what are the performance and scalability characteristics of mysql? : Sql dba
What is the advantage of index in sql?
how can we encrypt and decrypt a data present in a mysql table using mysql? : Sql dba
How many sql statements are used?
Hi, Can anybody please explain me the flow of the below query. I am not able to understand how this query works. This query is for finding the Nth highest salary.. SELECT DISTINCT (a.sal) FROM EMP A WHERE &N = (SELECT COUNT (DISTINCT (b.sal)) FROM EMP B WHERE a.sal<=b.sal); If N = 2 then second highest salary will be the o/p. If N = 3 then third highest salary will be the o/p. and so on.. Thanks, Nitin
5 Answers Deloitte, Ness Technologies,
What does plvtab enables you to do when you showthe contents of pl/sql tables?
Where do we use pl sql?
How to execute multiple sql statements in a single annonymous block irrespective of the sql statement result?
explain commit and rollback in mysql : sql dba
Explain autonomous transaction.
What is sql profiler in oracle?
I need to write a simple query,which one is better select statement or stored procedure?and why?