Skip to content

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 

Repository files navigation

docs

mysql 查看字段名和注释

select COLUMN_NAME,column_comment from INFORMATION_SCHEMA.Columns where table_name='table name' and table_schema='database name'

允许远程访问mysql >= 8.0


grant all privileges on db_name.* to root@'%' with grant option;

Mysql8

ALTER USER 'root’@‘localhost’ IDENTIFIED WITH mysql_native_password BY ‘password’;

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors