With out using count() function. How to the find total
number of rows in a table?
Answer Posted / subbarayulu neela
select max(rownum) from table-name;
Here rownum is a keyword which can gives unique number for
individual rows.
| Is This Answer Correct ? | 35 Yes | 2 No |
Post New Answer View All Answers
How does sql developer connect to oracle database?
Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?
Explain ddl statements in pl/sql?
Which is better join or inner query?
what are the differences between procedure-oriented languages and object-oriented languages? : Sql dba
Why query optimization is needed?
When is the update_statistics command used?
Why join is faster than subquery?
What can I use instead of union in sql?
how many tables will create when we create table, what are they? : Sql dba
Cite the differences between execution of triggers and stored procedures?
What is a system versioned table?
Can we call dml statement in function?
What is a variable in sql?
Does group by remove duplicates?