How to use COALESCE or if else condition in manticore sql query #1200
Kamleshgeet
started this conversation in
General
Replies: 1 comment
-
Also I want it to sort or order by en asc/desc using if else statement for manticore query SELECT * Suggest solution for this. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Using MySQL we can below.
But I want to do for manticore SQL query.
If possible for manticore JSON query then I want it too
Using below query I am able to search from products using MySQL
OR
SELECT *
FROM products1
WHERE IF(en is null, standard, en) LIKE '%nikon%'
here is result
Beta Was this translation helpful? Give feedback.
All reactions