I have a SQL query:
select recipe_title
from recipe where
meal_type ='BREAKFAST'
Is it possible to match any meal_type by only change the BREAKFAST?
Such as:
select recipe_title
from recipe where
meal_type = *
I know I can use like %% but that will need to change many places in my code. Is it possible to get all meal_type and still use =
Thanks!
?in the question a placeholder or just that you want use the=operator? Can you expand how this is being used in your code?