本文介绍了从Excel中读取指定的单元格并插入到SQL表中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有以下结构的Execl Sheet(2007)。 在Excel工作表中Sno。,详细信息,State1,State2,Name,College,Address,Department 是标题 ------------ -------------------------------- Sno。 |详情| STATE1 | STATE2 ----------------------------------------- --- 1 | NAME |约翰|彼得 2 |大学| AAA | BBB 3 |地址| YY | ZZ 4 |部门| IT | ECE 我想将STATE1,STATE2插入我的数据库。 您能否提供以下execl的表结构和 代码,仅选择STATE1,STATE2列并将STATE1,STATE2 colunm详细信息插入数据库。解决方案 中选择*Hi,I have an Execl Sheet (2007) in the following structure.In the Excel sheet Sno.,Details, State1, State2,Name,College,Address,Departmentare headings--------------------------------------------Sno. | DETAILS | STATE1 | STATE2--------------------------------------------1 | NAME | John | Peter2 | COLLEGE | AAA | BBB3 | ADDRESS | YY | ZZ 4 | DEPARTMENT | IT | ECEI want to insert STATE1,STATE2 into my database. Can you please provide table structure for the following execl andCode to select only STATE1,STATE2 Column and insert STATE1,STATE2 colunm details into the database. 解决方案 这篇关于从Excel中读取指定的单元格并插入到SQL表中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-26 20:40