Does anyone have a resource for inserting date_format() dates into a table that is NOT the mysql manual.
i have inconsistent results- i finally got this to insert properly, i don't know why i need to function it twice, but it works
insert into table(somedate) values(
date_format(date_format('$new_wed_date','%m/%d/%y'),'%m/%d/%y'))
however, this does not.... and neither does the below. i guess the rule is not to function it twice. i see no rules.
insert into meeting_info(start_date)
values(date_format(date_format('9/5/2002','%m/%d/%Y'),'%m/%d/%Y'))
insert into meeting_info(start_date)
values(date_format('9/5/2002','%m/%d/%Y'))