我刚刚通过 vb.net 搜索了有关如何获取“数据库的总和”的示例,现在我得到了这个,但是我将如何在 textbox1 和 textbox2 中显示它?
但我不知道如何将其插入文本框。
Try
conn = New OleDbConnection(Get_Constring)
conn.Open()
cmd.Connection = conn
cmd.CommandType = CommandType.Text
sSQL=" Select userName,sum(quiz) as SumQuiz,sum(total) as Total From xxx where [username]='ad' And studentID='1111111'"
cmd.CommandText = sSQL
da.SelectCommand = cmd