select COLUMN_NAME,column_comment from INFORMATION_SCHEMA.Columns where table_name='table name' and table_schema='database name'
grant all privileges on db_name.* to root@'%' with grant option;
ALTER USER 'root’@‘localhost’ IDENTIFIED WITH mysql_native_password BY ‘password’;