C# Query SqlDataAdapter da1 = new SqlDataAdapter("Select t.Tagusage,h.ProductName from Tagrankingtable t INNER JOIN TagTable h on t.TagId=h.TagId and(h.ClientId =)" + Session["ClientId"], con1);
This is my Sql query
Select t.Tagusage,h.ProductName from Tagrankingtable t INNER JOIN TagTable h on t.TagId=h.TagId and (h.ClientId =t.ClientId)
This sql query write in the c# code
How can i write in c#.net
Correct my C# query