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.
我有一个名为 rollno 的列和另一列 NAME,我在 Rollno 列中有数据,我需要根据来自 sql server 的卷号动态获取名称。
您可以使用ADO连接到 SQL Server
MSDN 库:ADO 连接
有关OLE DB 连接字符串,请参见此处
然后你可以打开一个ADO 记录集
MSDN 库:ADO 记录集对象
有关SQL ,请参见此处。
最后,您可以使用Excel 中Range对象的CopyFromRecordset方法将数据记录集转储到您的工作表中:
MSDN 库:CopyFromRecordset 方法