I want the correct syntax for changing column name of a database. Following not working where I want to change names of 2 columns, one from old to new, other from good to bad..thnx
B4X:
Dim chngQuery As String= "ALTER TABLE " &Main.DBTable & " CHANGE COLUMN old new CHANGE COLUMN good bad"
Main.SQL1.ExecNonQuery(chngQuery)