How to count the no of records of a table without using
COUNT function?
Answer Posted / kart
using select command
select * from xxx; we will get the no of rows at bottom
if the feedback is unset
then use the plsql with cursor;
select rownum from table; the last value
is the number of records
| Is This Answer Correct ? | 4 Yes | 9 No |
Post New Answer View All Answers
What is the default isolation level in sql server? : Transact sql
What are string functions in sql?
How to run pl/sql statements in sql*plus?
How to add a column ‘salary’ to a table employee_details?
what is single byte over head in oracle..?
How do I quit sql?
what is the difference between mysql_fetch_array and mysql_fetch_object? : Sql dba
What are joins in sql?
what are myisam tables? : Sql dba
Why do we need sharding?
How can you know that statistics should be updated?
Can we write ddl statements in functions?
how to escape special characters in sql statements? : Sql dba
What is a temp table?
What is the difference between delete and truncate commands?