When we execute select count(*) from table_name it returns the number of rows.
select count(*) from table_name
What does count(1) do? What does 1 signify here
count(1)
1
in oracle i believe these have exactly the same meaning