在SQL Server中选择特定行

时间:2016-12-19 21:30:11

标签: c# sql-server-2008

我开始在C#和SQL Server中开发,我不知道如何从一个特定于Excel的列中提取信息。

我有这个代码可以使用,但是我需要将文本框与特定列进行比较并获取数据:

实施例

Select * 
From T_Empleado 
Where "Specific column" = "textbox".

public void mostrarExcel()
{
    String name = "Sheet1";
    String constr = "Provider=Microsoft.ACE.OLEDB.12.0; Data Source=" + "C:\\Users\\alegriad\\Desktop\\sample\\Book2.xlsx" + "; Extended Properties='Excel 12.0 XML;HDR=YES;';";

    OleDbConnection con = new OleDbConnection(constr);
    OleDbCommand oconn = new OleDbCommand("Select * From [" + name + "$]'", con);
    con.Open();

    OleDbDataAdapter sda = new OleDbDataAdapter(oconn);
    DataTable data = new DataTable();
    sda.Fill(data);
    dgv_Reporte.DataSource = data;
}//mostrarExcel

谢谢。

1 个答案:

答案 0 :(得分:1)

您可以像这样编写查询

mov (%rax),%eax

我尝试使用下面的示例excel

enter image description here

我的查询就像这样

mov %rax,%eax

这适合我。