I'm putting this SQL code in an MS Access query, but it doesn't work. "Syntax error (no operator) in the query expression." What's wrong with this SQL code?
SELECT URL_ID
CASE
WHEN URL_ID LIKE '*SEM*' THEN 'Google'
WHEN URL_ID LIKE '*DIR*' THEN 'Bezpośredni'
ELSE 'Others'
END
FROM URL;