What is record in pl sql?
How does sql developer connect to oracle database?
What are different joins used in sql?
what is a foreign key ? : Sql dba
HOW CAN I FIND MAX SAL ,ENAME FROM EMP TABLE.
Does it possible to pass object (or) table as an argument to a remote procedure?
i have a customer table. trans_id trans_date trans_amt debit_credit_indicator 001 01-JAN-13 1099 cr 001 12-JAN-13 500 db 002 24-FEB-13 400 db 002 23-MAR-13 345 cr 001 18-APR-13 800 cr 002 15-MAR-13 600 db 001 12-FEB-13 200 cr i want like this output. trans_id trans_amt debit_credit_indicator i want get highest credit amount and lowest credit amount and highest debit amount and lowest debit amount for each trans_id.
what is sub-query? : Transact sql
What are different sql data types?
what is the use of set statement in tsql? : Transact sql
ename empno deptno amar 1 10 akbar 2 20 anthonny 3 30 jonathan 4 40 write a procedure to dispaly the column values ina row separated by a deleimiter eg - input - select ename from emp '|' output - amar|akbar|anthony|jonathan input - select empno from emp '@' o/p - 1@2@3@4 input - select deptno from emp '/' o/p - 10/20/30/40 Pls answer this questn.
How do I edit a trigger in sql developer?
what is overloading procedure or overloading function ?