Hi everyone,
I'm writing a short proc and am trying to make my code easier to read by using CASE and IN together:
CASE test
WHEN IN('a','b','c') THEN '123'
WHEN IN('d','e','f') THEN '456'
WHEN IN('g','h','i') THEN '789'
END
Anyone see anything wrong syntactically here? This code generates an...