Viewing 10 posts - 16 through 25 (of 25 total)
That worked a treat, I've been trying to search for that one for hours.
Thank you for your help
Dave
July 1, 2005 at 8:47 am
Its simple enough to find out which ones are in the format yyyy/mm/dd as they appear in the results as a '1' when using the following sql statement.
SELECT CHARINDEX('2005', dateOnlyEnd)...
July 1, 2005 at 7:03 am
I'll have a look into that thanks.
Will let you all know how I got on
July 1, 2005 at 5:30 am
wow it worked
Thanks a lot, I totally appreciate that
nice one
June 30, 2005 at 9:09 am
I have to actually head off now, but thanks for the help and I'll check these posts again tomorrow.
Thanks for the help
Dave
June 30, 2005 at 9:07 am
Hi thanks for getting back to me. The code I'm using is....
Update dbo.CallLogRevenuesTEST set dateOnlyEnd = SUBSTRING( dateOnlyEnd, 9, 2) + '/' + SUBSTRING( dateOnlyEnd, 6, 2) + '/' +...
June 30, 2005 at 8:59 am
I probably should have realised that was SELECT
But that just selects the rows from the table, how would this be made into an...
June 30, 2005 at 8:48 am
I'm totally new to this SQL Server stuff, I'm having difficulty understanding the ELECT statement.
What do the numbers 9, 2 and 6,2 mean?
June 30, 2005 at 8:28 am
I could easily change it to a date, but is it possible to change the format using SQL coding
Thanks
June 30, 2005 at 8:16 am
Viewing 10 posts - 16 through 25 (of 25 total)