I'm using MySQL, and I want to do a sort of ternary statement in my SQL like:
SELECT USER_ID, ((USER_ID = 1) ? 1 : 0) AS FIRST_USER
FROM USER
The results would be similar to:
USER_ID | FIRST_USER
1 | 1
2 | 0
3 | 0
etc.
How does one accomplish this?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…