Hi,
Can one let me know how to solve the below query..
There are two tables
table a and
table b
write the query to populate the table which has more than 50 rows
Printable View
Hi,
Can one let me know how to solve the below query..
There are two tables
table a and
table b
write the query to populate the table which has more than 50 rows
Try this
select table_name,num_rows from user_tables where num_rows>50
Please give a try to home work questions and post here before asking for help.