以下查询显示转换错误。
select 'a'
union all
select 1
执行我必须明确转换它..
隐式转换还有其他方法吗?
答案 0 :(得分:0)
may be we can convert integer to varchar explicitily.But in implicit we can convert alphabets to convert using ASCII values
select ASCII('a')
union all
select 1
or
select 'a'
union all
select CAST(1 AS VARCHAR)