Skip to content
Advertisement

using conditional where clauses in mysql select statement

There is a stored procedure sp_select_from_persons in MySql. And there are 3 parameters inside this procedure. age, class, group. These parameter values can be -1 or another value. And these parameters will be used in where clause.
Now I want to write where clause like that, if any value of these parameter is another than -1 then append them into where clause. For example:
if age = -1, class = 7 and group = 5 then select query will be:

or if age = 25, class = -1 and group = -1 then:

and etc.

I don’t want to use emnedded IF statements like below:

Is there a better way to do this?

Advertisement

Answer

This is a single line query…. Try This

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement