Mysql数据库--1
1.DBMS : 数据库安装mysql8.0
2.数据库操作》linux mysql服务启动:service mysql start
==>1.数据库命令: ==》1.数据库连接命令: mysql -uroot -p1234 -P3306 (-u 用户名 -p 密码 -P 端口号)
==>2.数据库修改密码:update mysql.user set authentication_string=password(‘123456‘) plugin=‘mysql-native-password‘ where user=‘root‘ and Host=‘localhost‘ ; ---修改密码
flush privilege; -----刷新权限
========
---查看数据库: show databases; ---切换数据库: use database name; ---查看数据库所有表 show tables; ---显示表段信息: describe table name;
--- 创建数据库: create database table name; --- 退出数据库: exit ---数据库注释单行-- ... ---多行/*.... */
相关推荐
CoderToy 2020-11-16
bianruifeng 2020-11-16
云中舞步 2020-11-12
敏敏张 2020-11-11
暗夜之城 2020-11-11
好记忆也需烂 2020-11-11
Coder技术文摘 2020-09-29
huacuilaifa 2020-10-29
Gexrior 2020-10-22
lpfvip00 2020-10-07
云中舞步 2020-09-11
康慧欣 2020-09-10
emmm00 2020-11-17
世樹 2020-11-11
tufeiax 2020-09-03
疯狂老司机 2020-09-08
王艺强 2020-11-17
ribavnu 2020-11-16