I created a table in which i used timestamp column which tells the record is updated on that time and date.
create table age_info (age tinyint not null,created_on timestamp not null );
But i want to change display like this.select date_format(Now() ,'%W, %e %M %Y @ %r');
Tuesday, 31 July 2015 @ 02:32:16 PM
But don't know how to do it. When i insert values
insert into age_info(age) values (19);
in the table it show like this.
age created_on
19 2015-07-31 18:55:01
I Don't know how to use this function date_format
with timestamp column to show like that format.