Skip to content
Advertisement

SQL – Get value of column for rows matching a string AND a list of strings not found in the table?

I have a table that has (among other things) a “serial number” (VARCHAR(50)) column and an “active” (BOOLEAN) column… so a sample of data might look like this:

Now, from an outside source, I am given a list of serial numbers, like so:

Is there a single (ideally) query or series of queries I can run to get the following details:

  • Does the serial number have an active=True entry?
  • If not, does it have an active=False entry?
  • If it doesn’t exist at all in the table, explicitly list it as such

I’m not terribly picky about the output, as long as:

  • All the serials from my input are listed, whether or not they exist
  • Each serial from my input is only listed once regardless of how many times it occurs in the table
  • If it exists in the table, does at least one of the entries have active=True?

Something like the following would be fine (with comments added to explain why I expect the given output):

I’d also be fine if the output were just two columns, with active=<null> for serial numbers that didn’t exist in the table. As I said I’m not picky, I just need to be able to distinguish the three states (exists and has active=True, exists and doesn’t have active=True, doesn’t exist).

Advertisement

Answer

One method is subqueries:

This can be run directly against a list of values by replacing input i at the end with the following:

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