可能重复:
Is there a way to turn off implicit type conversion in SQL Server?
非常尊重SQL Server - 它试图通过自动转换来“帮助”我:
如何将这些命令发送到失败? :
SELECT 1+1+'2' --4
SELECT '2'+1+1 --4
SELECT 1+'2'+1 --4
答案 0 :(得分:1)
你不能,虽然它是requested feature。已经在SO上讨论了这个问题:Is there a way to turn off implicit type conversion in SQL Server?