SQL is a standard language for accessing and manipulating databases.

DESC table_name; for show structure of table

 #Change column name
 ALTER TABLE students CHANGE COLUMN name nickname VARCHAR(255);