1.如何通过命令行连接mysql数据库
windows端:需要在命令行中进入mysql所在的目录下,进入bin目录下:
比如我的路径是在:e: mallStudymysqlMySQL Server 5.7in下输入:
mysql -hlocalhost -uroot -p
-u后面的为用户名名称 -p后面输入密码
显示出这个时证明连接数据库成功
show databases; //显示存在的数据库
use test; //test为相对应的数据库名称,表示使用某个数据库
show tables; //显示此数据库的所有表
desc book; //book为对应的表名称,此命令为展示表的字段详情
create database test; //建数据库。名字为test
create table user(id int(4) not null primary key auto_increment,username char(20)not null,password char(20) not null);
//创建数据库,名为user
insert into user (1,‘duoduo’,‘921012’); //插入一条数据
select * from user; //查询所有的信息
关于ubuntu 下mysql插入中文字符为???的情况解决方法:
https://www.cnblogs.com/fangyh/p/6286699.html
mysql修改数据库表和表中的字段的编码格式的修改
https://blog.csdn.net/luo4105/article/details/50804148
ubuntu上修改mysql默认字符编码出现的Job failed to start解决方法
https://blog.csdn.net/leroy008/article/details/15816391
-----------碰到什么问题欢迎在博客下面留言,我会与你一同解决问题!-----------