4. Using a set operator, display the creditor number of all
creditors who have ever been paid.
Answers were Sorted based on User's Feedback
Answer / srinivas
select credit_number from table where paid <> 1
[NOTE: Here we can use boolean value to paid field, if paid is success 1 inserted and if not paid then insert 0].
From above query , there is displays credit numbers with never paid.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / anil
select * from TN where bal is not null;
intersect
select * from TN where bal is null;
| Is This Answer Correct ? | 2 Yes | 6 No |
Describe Referential Integrity ?
How remove data files before opening a database?
The table has 3 columns 4 rows. The output is which column has least null values( A COL SHOULD BE THE OUTPUT) Write the query plz. A B C ---------- 1 NULL 7 2 4 NULL NULL 5 NULL 3 NULL NULL
What is oracle used for?
Is there any function in oracle similar like group_concat of mysql?
How to use in conditions in oracle?
What is different bet native dynamic sql and Dbms_Sql?
what is primary key and foreign key when and where have to use
4. Using a set operator, display the creditor number of all creditors who have ever been paid.
What are the different types of record groups in oracle? Explain each of them
What is the relationship among database, tablespace and data file?
select to_char('10','10') from dual This gives me an error oRA-1481 INVALID NUMBER FORMAT MODEL why? pls help