将 INT 转换为 VARCHAR SQL
我正在使用 Sybase 并且我正在执行一个选择,它返回一个名为iftype"的列,但它的类型是 int,我需要转换为 varchar.当我尝试在没有转换功能的情况下进行选择时,出现此错误:
I am using Sybase and I am doing a select which returns me a column called "iftype", but its type is int and I need to convert into varchar. When I try to do the select without the convert function I get this error:
错误代码 257,SQL 状态 37000:不允许从数据类型VARCHAR"到INT"的隐式转换.使用 CONVERT 函数运行此查询.
Error code 257, SQL state 37000: Implicit conversion from datatype 'VARCHAR' to 'INT' is not allowed. Use the CONVERT function to run this query.
我不知道如何实现函数CONVERT
.有谁能帮帮我吗?
I dont know how to implement the function CONVERT
. Can anyone help me, please ?
推荐答案
使用转换函数.
SELECT CONVERT(varchar(10), field_name) FROM table_name
相关文章