从数据库中查询出了结果集,怎么对里面的字段进行操作
已经查询出了结果集 rs
我想对结果集中的 rs( "news_content ")
只保存字段里的前20个字符,该怎么做?
------解决方案--------------------left(rs( "news_content ").Value,20)
------解决方案--------------------Select left(field_name,20) From [Table_name]
------解决方案--------------------Left(rs( "news_content "),20)
------解决方案--------------------Left(rs( "news_content "),20)