What are the parts of a basic sql query?
How write primary and foreign key relationship between two tables without using constraints? u can use any of procedure/function/trigger and any sql?
My select statement is not working as expected, So, to overcome from such issues what are the steps needed to be taken care?
Can a foreign key be null?
Can we use the cursor's to create the collection in PL/SQL?
What is the difference between RDBMS and DBMS?
20 Answers Practical Viva Questions, Sapient, Stag Computers,
what is innodb? : Sql dba
how to write utl file pkg in SQL
How the execution will be done in exceptions?
Which join condition can be specified using on clause?
what are the limitations of mysql in comparison of oracle? Mysql vs. Oracle. : Sql dba
How many sql are there?
Hello All, Could any well write a query for the following scenario. Account(table name) No Name Amount 1 ABCD 2000.00 2 DEFG -2000.00 3 GHIJ 3000.50 4 JKLM 4000.00 5 MNOP 6000.00 O/p Should be in this format No Name Credit Debit 1 ABCD 2000.00 0 2 DEFG 0 -2000.00 3 GHIJ 3000.50 4 JKLM 0 -4000.00 5 MNOP 6000.00 o could any one give appropriate query for this Thnks in Advance