1.数据库的安装:
利用阿里云的服务器,安装mysql服务器,有两种方式
第一种linux安装:
安装mysql:yum -y install mysql-community-server --nogpgcheck
启动mysql:systemctl start mysqld
设置开机自启动mysql:systemctl enable mysqld
获取root的初试密码:grep 'temporary password' /var/log/mysqld.log
root用户登录并输入上一步得到的初试密码:mysql -uroot -p
修改root的密码:ALTER USER 'root'@'localhost' IDENTIFIED BY '12345678';
给root用户赋权:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '12345678';
使用root登录:mysql -uroot -p12345678
创建test数据库:create database test;
使用test数据库:use test;
2.mysql常用命令:
基础的数据库命令增、删、改、查
增:
创建表:create table test1 (id int,name char(20));
新增表字段:ALTER TABLE user ADD COLUMN sex tinyint(1);
对表插入数据:insert into test1 values(1,"zhangsan");
删:
删除表:drop table test1;
删除表中对应数据:delete from test1 where id =1;
改:
更新表对应字段数据:update test1 set name = "lisi" where id =1;
查:
使用test数据库:select * from test1;