Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what if you really want to store the timestamp data, such
as the publication date of the article?

Answer Posted / tim little

A timestamp field can hold a date passed to it!
If you do :
CREATE TABLE newtable ( aname varchar(32), pubdate timestamp );
INSERT INTO newtable ( aname, pubdate ) values ( 'first', '2009-07-08' );
and then do a
SELECT * from newtable;

Then you get "2009-07-08 00:00:00" as the date back! You don't need a second field. Why do people think this? I've seen this all around the internet and it's always wrong!

Now, I will tell you that any updates to that ROW WILL clobber the field, UNLESS you make efforts to put the old value back in, like :
update newtable set aname = 'now', pubdate=pubdate where aname = 'first';

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Restore database (or database table) from backup.

1071


How can you create and drop view in mysql?

974


What are the drivers in MySQL?

1539


What is deterministic in mysql?

1030


How do I delete a row in mysql?

1023


Does mysql support nosql?

963


How do I select a database in mysql workbench?

1085


Why MySQL is used?

1076


How many rows can mysql handle?

992


Explain the difference between primary key and candidate key in mysql?

1010


What is dblink?

941


How can we get total number of records by query in mysql?

960


How do I install mysql on windows 7?

1039


What is information_schema in mysql?

1050


Can foreign key have duplicate values?

941