If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > MySQL > Simple Update Query

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 09-15-11, 10:52
geekunique geekunique is offline
Registered User
 
Join Date: Sep 2011
Posts: 1
Simple Update Query

Hello Everyone,

I'm a bit of a newbie with SQL but know enough to really break things. I would like to write some SQL which I can simply paste into phpMyAdmin or add to a PHP script, to update all the 'post_date' to today on my recruitment website. Thus making all my jobs look new again.

Each record has a unique ID although as I add jobs, more records will exist (obviously).

I've looked on a few forums but can't find a straight forward answer. What I'm basically looking for is a magical script to select all the records in the jobs table and update all the 'post_date' to today (2011-09-15 15:00:01).

thanks in advance.
Ren
Reply With Quote
  #2 (permalink)  
Old 09-15-11, 12:16
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,525
Code:
UPDATE jobs
   SET post_date = CURRENT_TIMESTAMP
__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
  #3 (permalink)  
Old 09-16-11, 00:44
niab niab is offline
Registered User
 
Join Date: Aug 2011
Posts: 1
You can check this,
update xxxx set post_date=date_format(now(),'%Y-%m-%d %H:%i:%s');

Regards,
niab
Reply With Quote
  #4 (permalink)  
Old 09-16-11, 07:25
r937 r937 is offline
SQL Consultant
 
Join Date: Apr 2002
Location: Toronto, Canada
Posts: 19,525
no, niab, the DATE_FORMAT function is completely unnecessary

and NOW() is mysql's proprietary non-standard equivalent for CURRENT TIMESTAMP

so the answer is already given, in post # 2

__________________
r937.com | rudy.ca
please visit Simply SQL and buy my book
Reply With Quote
Reply

Tags
update

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On