
25/03/2002, 07:50
|
| | Fecha de Ingreso: febrero-2002
Mensajes: 80
Antigüedad: 23 años, 1 mes Puntos: 0 | |
Re: Como hago este SQL? Te recomiendo que lo hagas en dos consultas diferentes.
Primero muestra los que han pagado
"SELECT * FROM Auctions WHERE CategoryID = " & SQLVal(iCatID) & " "
& " AND AvailDate <= " & SQLDate(NOW)
& " And Ended = false And pago"
& " ORDER BY CloseDate "
Y ahora los que no
"SELECT * FROM Auctions WHERE CategoryID = " & SQLVal(iCatID) & " "
& " AND AvailDate <= " & SQLDate(NOW)
& " And Ended = false And not pago"
& " ORDER BY CloseDate " |