I am trying to write an SQL statement with multiple conditions.
Can I write it as:
Or should it be:
Or something else completely?
Thanks!
Can I write it as:
Code:
SELECT * FROM table WHERE condition1, condition 2, condition 3
Or should it be:
Code:
SELECT * FROM table WHERE condition1 AND condition 2 AND condition 3
Or something else completely?
Thanks!