我的数据库中有姓名、性别、工资和奖金
现在要按照收入从高到底排列,及按照工资和奖金之和从高到底排列
请问如何编写程序!谢谢

这是我的程序,一直不对,有问题,,请帮忙指正

Private Sub Command5_Click()
    Adodc1.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\职工档案.mdb;Persist Security Info=False"
    Adodc1.RecordSource = "select * from 数据库 order by 工资+奖金"
  Adodc1.Refresh
   
   Set DataGrid2.DataSource = Adodc1
End Sub