My aim is to alter table course_info whose present schema is
course_info( course_no , course_name , course_prerequisite , cost )
into
course_info( course_no , course_prerequisite , course_name , cost )
I tried the sql statement as per the link How to move columns in a MySQL table?
Statement throwing error:
alter table course_info modify course_prerequisite number(8) after course_name ;
but it is giving me error
ORA-01735: invalid ALTER TABLE option