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.
我编写了一个代码来使用属性文件将 excel 表的内容读入数据库。在我的代码中,我明确传递了 excel 文件名,bt 如果我想处理多个 excel 表,我该怎么办?如何读取多个excel表n如何将其保存在数据库中?
首先,您将 EXCEL 文件保存为 csv 格式。然后使用以下查询将数据插入数据库。
LOAD DATA INFILE 'data.csv' INTO TABLE db2.my_table;
你明白我的意思了吗?