Re: [SQL] Conditional Lookup Table with Like - Mailing list pgsql-sql

From sqlQuestions
Subject Re: [SQL] Conditional Lookup Table with Like
Date
Msg-id 1487286348488-5944801.post@n3.nabble.com
Whole thread Raw
In response to Re: [SQL] Conditional Lookup Table with Like  ("David G. Johnston" <david.g.johnston@gmail.com>)
Responses Re: [SQL] Conditional Lookup Table with Like  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-sql
Thanks for your response David.

I took out the WHEN table2.category IS NULL clause because I only want it to
pull the category from table2 when the lookup_value exists in description,
otherwise pull the table1 category. NULL doesn't matter to me.

Unfortunately, it still always pulls the category from table1.

SELECT code, description,
CASE WHEN description LIKE ('%' || lookup_value || '%')         THEN table2.category         ELSE table1.category
  END
 
FROM table1
LEFT JOIN table2 USING (code);



--
View this message in context: http://postgresql.nabble.com/Conditional-Lookup-Table-with-Like-tp5944796p5944801.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.



pgsql-sql by date:

Previous
From: "David G. Johnston"
Date:
Subject: Re: [SQL] Conditional Lookup Table with Like
Next
From: "David G. Johnston"
Date:
Subject: Re: [SQL] Conditional Lookup Table with Like