sql query to get zero records from a table
Answers were Sorted based on User's Feedback
Answer / nanne
Your Question is not clear..i believe that your expecting retrieve the tables which are having zero rows in the database.
Yes...we can retrieve the zero rows tables from DB
Select * from dba_tables
where num_rows = 0;
Regards,
Nanne
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vipul.solanki
select * from menu_master where rownum <1;
| Is This Answer Correct ? | 1 Yes | 2 No |
how will I find the first 5 highest salaried employees in each dept in oracle.
How to count duplicated values in a column in oracle?
how to find the n'th highest salary from emp ?
What are the composite date types in oracle?
what is IDE,DMV in sql server?
What is an oracle user account?
What is tns name?
Why do you create or replace procedures rather that drop and recreate.
Define the SGA and: How you would configure SGA for a mid-sized OLTP environment? What is involved in tuning the SGA?
What is oracle rowcount?
I have a parent program and a child program. I want to write a statement in Exception Block of the parent program so that when the statement in the exception block is executed, the control goes to the next statement in the parent block bypassing the child block.How do i do that?
What is Parallel Server ?