我有一个带有两个选项卡的 excel 表,所以我想从一个选项卡中获取一行并插入另一个选项卡,我认为它与 sqlserver 或 mysql 中的相同。只需选择并插入..
我正在使用这个查询,但它说语法错误,不确定其中有什么问题。
testCommand.CommandText = "Insert into [ActiveLicenses$]( Select * from [companies$]
where [License Number] = '" + lnumber + "')";
testCommand.ExecuteNonQuery();
更新
有没有办法直接从excel表中删除行?