时间:2021-07-01 10:21:17 帮助过:12人阅读
如果 title 字段类型为 nvarchar,content 字段类型为 ntext ,那么下面的sql语句会报错:
select title,content from article
正确的写法是:
select convert(varchar(255),title) as title, convert(text,content) as content from article
或者不使用ntext字段
这个很受用,解决我的难题!
http://www.bkjia.com/PHPjc/328178.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/328178.htmlTechArticle在PB开发过程中,由于数据库中使用了 ntext字段,出现以下提示错误,郁闷了很长时间找不到解决方案,后查阅大量资料, 终于明白: PB报...