I have this query that I'm using in coldfusion:
Insert into ps_manager_empl oyee_ids (manager_emplid ,emp_id,last_na me,first_name,h ire_dt,rehire_d t,emp_status,un ion_status)
values ('#managerempli d#','#emplid#', '#last_name#',' #first_name#',' #hire_dt#','#re hire_dt#','#emp _status#','#uni on_status#')
I'm trying to insert some date values, but they are entering as 1/1/1900 instead of NULL. How can I insert them as null instead?
Insert into ps_manager_empl oyee_ids (manager_emplid ,emp_id,last_na me,first_name,h ire_dt,rehire_d t,emp_status,un ion_status)
values ('#managerempli d#','#emplid#', '#last_name#',' #first_name#',' #hire_dt#','#re hire_dt#','#emp _status#','#uni on_status#')
I'm trying to insert some date values, but they are entering as 1/1/1900 instead of NULL. How can I insert them as null instead?
Comment