快轉到主要內容

How to change password of Mariadb?

·63 字· loading · loading ·
Computer-Science Mariadb
目錄
SQL - 本文屬於一個選集。
§ : 本文

Syntax
#

1SET PASSWORD [FOR user] =
2    {
3        PASSWORD('some password')
4      | OLD_PASSWORD('some password')
5      | 'encrypted password'
6    }

Example
#

p.s. change the following example username root by your own.

1SET PASSWORD FOR 'root'@'localhost' = PASSWORD('newpass');

or if you wanna delete the password from user:

1SET PASSWORD FOR 'root'@'localhost' = PASSWORD("");

References
#

Alpaca
作者
Alpaca
No one can stop my feet.
SQL - 本文屬於一個選集。
§ : 本文

相關文章

Change root password in MySQL 8
·136 字· loading · loading
Computer-Science MySQL

Change the password of root in mysql version 8

《SQL Basics-03》UPDATE、ALTER、DROP
·907 字· loading · loading
Computer-Science SQL Database

一些基礎常見的 SQL 語法。

《SQL Basics-02》SELECT、LIKE
·935 字· loading · loading
Computer-Science SQL Database

一些基礎常見的 SQL 語法。

《SQL Basics-01》CREATE、INSERT
·1421 字· loading · loading
Computer-Science SQL Database

一些基礎常見的 SQL 語法。

資料庫概念 DB、DBMS、SQL 之間的關係
·964 字· loading · loading
Computer-Science SQL Database

資料庫早已被大量使用,如果還分不清楚 Database 與 DBMS 及 SQL 的關係,那還真是場災難呢!

移動 WSL 的儲存空間到其他硬碟
·1041 字· loading · loading
Computer-Science WSL
Windows 的 WSL 佔用了太多系統空間,本文將介紹如何將其移動至自訂的硬碟位置。