Viewing 15 posts - 2,116 through 2,130 (of 59,067 total)
Just for convenience, here's the formula. Replace the "t.N" with the name of your IDENTITY column that starts at zero.
CONCAT('10.',CHAR(66+t.N/1000),RIGHT(CONCAT('00',t.N%1000),3))EDIT: Forgot to add that it would be...
--Jeff Moden
Change is inevitable... Change for the better is not.
Yes. And, it's easy. Start an IDENTITY column at "0". Add a computed column with the formula from my previous query but replace the "t.N" in both places with the...
--Jeff Moden
Change is inevitable... Change for the better is not.
Too funny. I wish it returned an error instead. One that says, "Dude! Just because this is 2022, you shouldn't expect anything different here!" 😀
--Jeff Moden
Change is inevitable... Change for the better is not.
I guess I don't understand why you think that you need to list every column. If you're trying to export the whole table, then export the whole table.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 15 posts - 2,116 through 2,130 (of 59,067 total)