Skip to content

Tag: MySQL

MySQL基本操作

连接数据库 >mysql -u用户名 -p密码 或者: >mysql -u用户名 -pEnter password: ****** 用户管理 创建用户 create user ‘username’@’localhost’ identified by ‘password’; 用户授权 grant privileges on database_name.table_name to ‘username’@’localhost’…

Leave a Comment