I have the following line of code that works perfectly. However I want to have an order by C in there.
rs.Open "SELECT A, B, C FROM tblTest WHERE C = '" & Me.DataCombo1.Text & "'", MySQLConnection, adOpenStatic
Where would I place the Order By C code and does it have to be surrounded by & and '"?
rs.Open "SELECT A, B, C FROM tblTest WHERE C = '" & Me.DataCombo1.Text & "'", MySQLConnection, adOpenStatic
Where would I place the Order By C code and does it have to be surrounded by & and '"?