Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
i have this script
select *
from where
as_at_date <> date('30-jun-2018') and name <> 'abc' and s_name <> 'group'
i dont want data only for 30-jun-2018 against name 'abc'
i did this but this is not working
Try:
text(as_at_date) <> '30-jun-2018' and name <> 'abc' and s_name <> 'group'
Try:
text(as_at_date) <> '30-jun-2018' and name <> 'abc' and s_name <> 'group'
Can you explain how it's not working?
What is the source data, the result you now get and the result you want to get?