How to combine the two SQl Queries into one
In My case 3 Tables Name
Remain_cotton,add_cotton,Sell_Table
conn.Execute _
"INSERT INTO Remain_Cotton(No_Of_Bottle) " & _
"SELECT sum(No_Of_Bottle)" & _
"FROM add_cotton Where Cateogry='Large'"
conn.Execute _
"INSERT INTO Remain_Cotton(Quantity) " & _
"SELECT sum(Quantity)" & _
"FROM Sell_Detail Where Cateogry='Large'"
what I want
conn.Execute _
"INSERT INTO Remain_Cotton(No_Of_Bottle)(Quantity) " & _
"SELECT sum(No_OF_Bottle),sum(Quantity)" & _
"FROM add_cotton,Sell_Detail Where Cateogry='Large'"
I ask similar question Before but its time it is a SQL statement so Please Don't connect it with the previous one