I want to add the full_name row to the existing database, in the place of COLUMN highlights the "unrecognized statement", what could be the problem, tell me?
public static void addColumn() { try { st = conn.createStatement(); String sql = "ALTER TABLE applicants ADD COLUMN full_name TEXT"; st.executeUpdate(sql); st.close(); conn.close(); } catch (SQLException e) { e.printStackTrace();