Greetings guys I have the following sentence:
$query = "SELECT *
FROM pedidos
WHERE usuario = '$usua
AND status_pedido = 'ESPERANDO' ";
Just as it works perfectly but I would like it to also select if the condition is met status_qualified = 'APPROVED'
I tried placing the conditional
OR status_pedido = 'APROBADO'
But it does not give me results even if there is a data with status_pedido = 'WAITING' or 'APPROVED'