安裝mysql模塊
創建數據庫和表並輸入內容
注意端口號還有密碼
加入條件查找
報錯
Client does not support authentication protocol requested by server; consider upgrading MySQL client'
解決辦法
1、use mysql;
2、alter user 'root'@'localhost' identified with mysql_native_password by '********';
3、flush privileges;