i need to insert data in dob field of one table into the dob field of another table .
in the first table the dob is in nvarchar(50) and in the other it is in datetime.
I have around 15000 entries in the do field.so i ned to select all the entries to copy.
can any one help me in converting it into datetime..
i used convert(datetim e,getdate(),2)
but getting the present days date. i need to select all the entries in dob....
in the first table the dob is in nvarchar(50) and in the other it is in datetime.
I have around 15000 entries in the do field.so i ned to select all the entries to copy.
can any one help me in converting it into datetime..
i used convert(datetim e,getdate(),2)
but getting the present days date. i need to select all the entries in dob....
Comment