我如何在内连接查询中正常选择表/列?
查看此代码SQL CODE HERE
这就是我填充我的dgv的方式
SqlConnection con = new SqlConnection("Data Source=DESKTOP-5V9PS33\\SQLEXPRESS;Initial Catalog=Farmacia;Integrated Security=True");
con.Open();
SqlCommand sc = new SqlCommand("SELECT Category,Subcategory,Product,Supplier FROM Inventory Inner Join Category ON Category.ID = Inventory.CategoryID Inner Join Subcategory ON Subcategory.ID = Inventory.SubcategoryID Inner Join Product ON Product.ID = Inventory.ProductID Inner Join Supplier ON Supplier.ID = Inventory.SupplierID", con);
SqlDataReader reader;
reader = sc.ExecuteReader();
DataTable dt = new DataTable();
dt.Columns.Add("ID", typeof(int));
dt.Columns.Add("Product", typeof(string));
dt.Columns.Add("Category", typeof(string));
dt.Columns.Add("Subcategory", typeof(string));
dt.Columns.Add("Supplier", typeof(string));
dt.Load(reader);
for (int x = 0; x < dt.Rows.Count; x++)
{
string ID = dt.Rows[x].ItemArray[0].ToString();
string Product = dt.Rows[x].ItemArray[1].ToString();
string Category = dt.Rows[x].ItemArray[2].ToString();
string Subcategory = dt.Rows[x].ItemArray[3].ToString();
string Supplier = dt.Rows[x].ItemArray[4].ToString();
string[] row = { ID,Product, Category, Subcategory, Supplier };
dgvInventory.Rows.Add(row);
}
我需要在一个查询中输出ID和其他信息,这样我就可以将它们放入一个数据表,然后用它填充DGV
答案 0 :(得分:0)
将Inventory.Id
添加到您的select
查询。
SELECT Inventory.Id, Category,Subcategory,Product,Supplier FROM Inventory ...