Answer Posted / bolearner
There are 2 ways used to find the row count of any table.
SELECT COUNT(*) FROM EMP;
SELECT TABLE_NAME, NUM_ROWS FROM USER_TABLES WHERE TABLE_NAME='EMP';
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can triggers stop a dml statement from executing on a table?
What is meant by user defined function?
Define join and name different types of joins?
explain primary keys and auto increment fields in mysql : sql dba
How delete all records from table in sql?
what is the use of set statement in tsql? : Transact sql
What is Collation Sensitivity ? What are the various type ?
What is varchar data type in sql?
Can a commit statement be executed as part of a trigger?
Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?
Why is pl sql needed?
What are inbuilt functions in sql?
Is sql a backend language?
Differentiate between pl/sql and sql?
Is left join same as inner join?