thanks, you literally saved me
2 2018-05-20 07:25:42
Topic: sql CASE WHEN (2 replies, posted in SQL queries)
Hi
I'm trying to make sql query that will compare value of "collum1" and then insert text to "collum2". Can you please tell me, what i'm doing wrong?
SELECT *
CASE
WHEN "collum1" <10 THEN 'text'
END "collum2"
FROM "table"