December 9, 2011 at 7:00 am
How to run a script to update all 01/01/1900 to null in a date type column?
December 9, 2011 at 7:06 am
adonetok (12/9/2011)
How to run a script to update all 01/01/1900 to null in a date type column?
Ummm. . .
UPDATE myTable
SET myDate = NULL
WHERE myDate = '1900-01-01'
December 9, 2011 at 7:07 am
it's just a simple update...
UPDATE MyTable
Set MyDateColumn = NULL
WHERE MyDateColumn ='1900-01-01'
Lowell
December 9, 2011 at 7:08 am
Second Place...again 😉
WTG Cadavre.
Lowell
December 9, 2011 at 7:13 am
Lowell (12/9/2011)
Second Place...again 😉WTG Cadavre.
..::''''::..
.:::. .;'' ``;.
.... ::::: :: :: :: ::
,;' .;: () ..: `:::' :: :: :: ::
::. ..:,:;.,:;. . :: .::::. `:' :: .:' :: :: `:. ::
'''::, :: :: :: `:: :: ;: .:: : :: : : ::
,:'; ::; :: :: :: :: :: ::,::''. . :: `:. .:' ::
`:,,,,;;' ,;; ,;;, ;;, ,;;, ,;;, `:,,,,:' :;: `;..``::::''..;'
``::,,,,::''
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply