Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我使用 Teradata Sql Assistant 在informix 数据库上运行选择查询时,所有文本字段都为空。但是,当我使用 DBeaver 之类的另一个数据库管理器时,在同一个表上使用选择查询时,我会在文本字段中获取值。有没有其他人遇到过这个问题?如果是,您是如何解决的?谢谢您的帮助!
我今天遇到了类似的问题,尝试在您的选择中将文本列转换为 varchar。
SELECT CAST(txt_column As VARCHAR(8000))