以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 提取值的问题 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=120764) |
-- 作者:jackchan1208 -- 发布时间:2018/6/23 10:13:00 -- 提取值的问题 老师请教下,SQLGetComboListString(ColumnName,Filter, Sort) 方法能获取的是不重复的值,但如果是重复的值我想获取,类似于得到结果 A|A(如果A值出现了2次的话),有对应的方法吗?谢谢 |
-- 作者:有点蓝 -- 发布时间:2018/6/23 11:51:00 -- Dim str As String = "" For Each dr As DataRow In DataTables("").SQLSelect("") str &= "|" & dr("ColumnName") Next msgbox(str.Trim("|"))
|