1. 程式人生 > >My sql 8.0.13 安裝填坑

My sql 8.0.13 安裝填坑

會報錯的寫法: 
GRANT ALL PRIVILEGES ON *.*  'root'@'%' identified by '123123' WITH GRANT OPTION; 

以下是正確的寫法:

grant all privileges on  *.* to 'root'@’%’ ;