赞
踩
前言:
此处使用的是ubuntu 20
(如何在windows上安装ubuntu,请参考上一篇文章)
打开命令行终端
cmd终端分别输入(以下黑色背景部分命令)
(1)获取root权限
sudo su
输入
apt-get update
如果没有显示connection failed,则跳过第(2)步,直接去下第(3)步
(2)配置apt安装包源(默认是外网,无法获取)
获取方式:打开ubuntu浏览器,搜索:
ubuntu20 aliyun sources.list
cmd打开后,输入下列命令,进行全完文复制粘贴+替换即可:
完成后保存
gedit /etc/apt/sources.list
(3)更新apt库
apt-get update
apt-get upgrade
(4)安装mysql
检查是否安装
mysql
安装客户端
apt install mysql-client-core-8.0
安装服务端
apt install mysql-server
(5)开始使用mysql
mysql
(6)创建简单数据库
mysql //进入数据库 create database myTestData; //创建数据库 use myTestData; //使用数据库 create table myTestTable; //创建表格(根据自己需求创建) create table m_blog ( id bigint auto_increment primary key, user_id bigint not null, title varchar(255) not null, description varchar(255) not null, content longtext null, created datetime not null on update CURRENT_TIMESTAMP, status tinyint null ) charset = utf8mb4; INSERT INTO myTestData (id, user_id, title, description, content, created, status) VALUES (15, 1, '标题', '摘要', '数据', '2022-04-12 1:41:00', 0); //填充表格数据 show tables; //查看表格 select * from myTestTable;提取表格数据
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。