Skip to content
Advertisement

How do i create a view table to show current number of record of the same employee and the total count? SQL ORACLE

How do i create a view to show the number of total records by name?

This outputs:

I am looking to get an output like this..

And assuming I have another person with a different name, the view will show this..

Advertisement

Answer

Use count() aggregation with group by

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement