mysql

mysql命令:

mysqld --initialize-insecure

net stop mysql

net start mysql

update mysql.user set authentication_string=password('root') where user='root';

show variables like '%case%';

select CONCAT(COLUMN_NAME,',') Nam from information_schema.COLUMNS where table_name = 'ApiConfig'

原文地址:https://www.cnblogs.com/luoyunyong/p/8143120.html