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.
我有一个包含 2 列的视图:名称和电话。视图名称是 vwOrder。使用 Lotus @Formulas,如何获取此视图中存在的第一个条目( Phone 的第一个值)?
使用@DbColumn 获取Phone 列的值列表。
Phones := @DbColumn("";"":"DB.NSF";"vwOrder";2)
然后只需获取该列表的第一个值
Firstphone := Phones[1]