If in the the field END there is data only when the auction ends, then the query will be:
Select * from auctions where end is not null;
But if you want to retrive the aucions with a date less than now, the query is:
Select * from auctions where ends < now();
(See the section 6.3.4 Date and time functions of the MySql Manual)
VĂctor Ponz
Spain