Hi!
I want to create stored procedure which updates field of datetime-type in order to change format from 'dd/mm/yyyy' to 'mm/dd/yyyy' (Errors will not occur - I'm sure)...
Something like:
Update table Mytable
Set Date1=(mm/dd/yyyy)
Where Date1=(dd/mm/yyyy)...
Is it possible?
Thanx in advance!!
I want to create stored procedure which updates field of datetime-type in order to change format from 'dd/mm/yyyy' to 'mm/dd/yyyy' (Errors will not occur - I'm sure)...
Something like:
Update table Mytable
Set Date1=(mm/dd/yyyy)
Where Date1=(dd/mm/yyyy)...
Is it possible?
Thanx in advance!!