Skip to content
Advertisement

Oracle | If row not found then output count 0

Given a list of client names (comma separated) I need to find out how many exists in Client table and how many dont. The table and input lists are both huge; here I’m just giving table as an example of my requirement.

Client

client_name status
abc 1
def 1
ghi 0
jkl 1

Query I thought of using is

This returns:

client_name count_client
abc 1
jkl 1

But what I need is

client_name count_client
abc 1
xyz 0
ghi 0
jkl 1

Could someone please help me with the SQL query

Advertisement

Answer

If you have “huge” amount of data, then your best option is to store list of values you’re interested in into a separate table. That’s trivial.

Otherwise, as an alternative you could try something like this (sample data in lines #1 – 11; query begins at line #12):

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