Always worried about your future And nothing goes right these days Always searching for excuses Only trying hard to be praised
總是擔心你的未來 最近沒有一件順心的事 總是在找藉口 只為了贏得稱讚而努力
You’re not the only one Don’t be full of yourself Let myself understand All your happiness and pains This is not a farewell But a start of a new day
你不是一個人 不要自以為是 讓我理解 你所有的快樂與痛苦 這不是告別 而是嶄新的一天的開始
To our home sweet home To our warm sweet home To our hope to our road To our warm sweet home To our home sweet home To our warm sweet home To our hope to our road To our warm sweet home
Always regretting your choices And still thinking that nothing goes right Always taking it all on yourself Why do you think that nobody is on your side
You’re not the only one Don’t be full of yourself Let myself understand All your clamors and complaints This is not a farewell But a start of a new day
你不是一個人 不要自以為是 讓我理解 你所有的叫喊與抱怨 這不是告別 而是嶄新的一天的開始
To our home sweet home To our warm sweet home To our hope to our road To our warm sweet home To our home sweet home To our warm sweet home To our hope to our road To our warm sweet home
首先你需要先到 Line developers console 點選「Create a new channel」建立一個新的Channel,類型選擇「Messaging API」。填寫完成送出後進入Channel設定頁,複製最下方的「Channel secret」。回到上方選擇「Messaging API」頁籤,複製最下方的「Channel access token」。
mysql> CREATE USER 'user_name'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password';
移除使用者
mysql> DROP USER 'user_name'@'localhost'
修改使用者密碼
mysql> ALTER USER 'user_name'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password';
查看使用者權限
mysql> SHOW grants for 'user_name'@'localhost';
授權使用者權限
#針對某資料庫開部分權限
maysql> GRANT SELECT,INSERT,UPDATE,DELETE,CREATE ON db_name.*(or table_name) TO 'user_name'@'localhost';
#針對某資料庫開所有權限
maysql> GRANT ALL PRIVILEGES ON db_name.*(or table_name) TO 'user_name'@'localhost';
#針對所有資料庫開所有權限
maysql> GRANT ALL PRIVILEGES ON *.* TO 'user_name'@'localhost';