hi, trying to create an sql statment
insert a user_id, todays date, and a date 6 months from now, how do I add 6 monts
to a date in sql. I tryed
insert into tab_name
(user_id,
today_date,
six_month_date)
values
(12345,
today,
6 month units + today) or the other way around does not work
has anybody tryed doing something like that