Copy link to clipboard
Copied
I am using PHP MySQL
Hi I have a recordset being filtered using the code below:
$query_CurrentCVIP = "SELECT * FROM Community_Profiles WHERE `ACCESS` = 'CVIP'";
Is their any way to filter it by checking more than one value. For example:
WHERE 'ACCESS' = 'CVIP' and 'RANDOM' = "Test'
Is something like that possible?
Thanks for the Help ![]()
Of course. A SQL where clause can contain multiple tests using either the AND or OR operators.
Copy link to clipboard
Copied
Of course. A SQL where clause can contain multiple tests using either the AND or OR operators.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now