Jump to content

time easue


aliento

Recommended Posts

I make an auction site, i want to see if any auction has expired and if it ends set the `status` entry to 'closed' .

I use Unix timestamps saved to the `auctions` table. This table has and one field `staus` which has to change if the field `published_time` have expired.

Any help ?

My thought was to ask db which have expired save the ids to an array and then make the update .

But this is very expensive i hope there is a juggling which do it at once.

 

Link to comment
Share on other sites

update set status = closed where (published_time > allowed_time) 

 

Or something to that affect.  If you design your database layout right it's not a very costly query.  And really you shouldn't have to worry about that too much unless this auction site was super sized.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.