in pl / sql how to count the number of records in a [closed] table

-1

In pl / sql, how to count the number of lines in a table and then get me a message

I have x providers in the provider table

    
asked by Jose Luis Juan Dominguez 23.03.2018 в 18:15
source

1 answer

1

The count () function allows you to count the records of a table

You can also add a WHERE to the query and it will give you a count of a record segment

SELECT COUNT(*) as total FROM datos
    
answered by 23.03.2018 в 18:48