storing system date in my sql
Hello guys, How i can store system date using mysql query
Code:
insert into table values('val1',system date here,'value2');
either I have to use now() function or else.
or
using default while creating table
Code:
create table abc('col1',system date here,'col2');
thanks.
storing system date in my sql
Hello guys, How i can store system date using mysql query
Code:
insert into table values('val1',system date here,'value2');
either I have to use now() function or else.
or
using default while creating table
Code:
create table abc('col1',system date here,'col2');
thanks.