Question
For one column I need some logic, return null in select
I have a query where I want to select stuff but for one
column I need some logic
select a,b,c, { if (a=b ) return null, else return a - c} as d
I don't know how to do this,
Any ideas?
select a,b,c, { if (a=b ) return null, else return a - c} as d
I don't know how to do this,
Any ideas?
