Private Sub Command1_Click()
Adodc1.ConnectionString = "driver={SQL Server};" & "server=user-PC;uid=sa;pwd=lenovo;database=test"
Adodc1.RecordSource = "update table1 set table1.score=score.score from score where table1.studentno=score.studentno "
Text1.Text = Adodc1.Recordset.RecordCount
Adodc1.Refresh
End Sub
这是我程序,问题因该出在这句update table1 set table1.score=score.score from score where table1.studentno=score.studentno  因为我把这句换成其他的比如select * from score 就没有问题了,哪位高手能帮忙解答一些这是为什么啊???