本文介绍了如何匹配excel和数据库中的列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个数据库,其中一列是帐户号,并且在Excel工作表中也没有帐号。如何通过vba查询匹配列?



我尝试过:



select * from account where account_no = sheet1.range(A1)



未运行

i have database in which one column is account no and also have account no column in excel sheet. how to match column through vba query ?

What I have tried:

"select * from account where account_no= sheet1.range("A1")"

its not running

推荐答案


这篇关于如何匹配excel和数据库中的列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 19:49