Hi,
I would like to use the MySQL CASE function in a DB read action to change the value of the table field while displaying in web page like
Thank you
I would like to use the MySQL CASE function in a DB read action to change the value of the table field while displaying in web page like
SELECT Name, CASE shift_id WHEN 0 then 'Morning' WHEN 1 then 'Afternoon'Basically what I want is to display human-readable text instead of id while returning the data in a table. Is it possible in DB read action and if yes how the action should be set up?
WHEN 2 then 'Night' END AS InternetApproved FROM Table1
Thank you