What is the general guidance on when you should use CAST versus CONVERT? Is there any performance issues related to choosing one versus the other? Is one closer to ANSI-SQL?
|
2
|
|
|
|
|
|
CONVERT is SQL Server specific, CAST is ANSI. CONVERT is more flexible in that you can format dates etc. Other than that, they are pretty much the same. If you don't care about the extended features, use CAST. |
||
|
|
|
|
Cast is ansi, convert is not. |
||
|
|
Convert has a style parameter for date to string conversions. |
||
|
