Mysql-基础+安装指南
安装指南:
https://www.cnblogs.com/majj/p/9160383.html 小马哥
下载完后初始化操作数据库:
1. 将文件放在 :
G:\软件\mysql-8.0.15-winx64\bin
2. 执行初始化命令
进入 bin目录下 进行初始化
mysqld --initialize-insecure --user=mysql
3.启动mysql
net start mysql
4. 如果step3 失败的话,执行mysqld -install 命令 ,这个命令需要在admin管理
mysqld -install
5. mysql 8版本可能需要root密码,我们重置一下密码:
1、先关掉系统服务
net stop mysql
2、进入mysql安装目录的bin文件中,以管理员的方式运行cmd,然后输入如下命令,实现无密码登陆
mysqld --console --skip-grant-tables --shared-memory
3、以空密码登入系统
mysql.exe -u root
4、重置密码
UPDATE mysql.user SET authentication_string='root' WHERE user='root' and host='localhost';
1. 新建数据库,表
1. 创建数据库
mysql> create database maizi1;
Query OK, 1 row affected (0.01 sec) mysql> create database if not exists maizi default character set "utf8";
Query OK, 1 row affected (0.00 sec) mysql> use maizi;
Database changed
mysql> 2. 创建数据库表 user
create table if not exists user(
id smallint,
username varchar(20),
age tinyint,
sex enum("男","女","保密"),
email varchar(50),
addr varchar(200),
birth YEAR,
salary float(8,2),
tel int,
married tinyint(1) comment "0,代表未婚.非零代表已经结婚."
)engine =innodb charset =utf8; 3. 创建 数据库表 course
create table if not exists course(
cid tinyint,
couseName varchar(50),
courseDesc varchar(200)
); 4. 创建表cms
create table if not exists cms_cate(
id tinyint,
cateName varchar(50),
cateDesc varchar(200)
)engine=myisam charset =utf8; 5. 创建表cms_news
create table if not exists cms_news(
id int,
title varchar(50),
content text,
pubTime int,
clickNum int,
isTop tinyint(1) comment "0代表不置顶,1代表置顶."
);
2.查看数据库表
6. 查看表结构 mysql> describe user;
+----------+------------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+------------------------+------+-----+---------+-------+
| id | smallint(6) | YES | | NULL | |
| username | varchar(20) | YES | | NULL | |
| age | tinyint(4) | YES | | NULL | |
| sex | enum('男','女','保密') | YES | | NULL | |
| email | varchar(50) | YES | | NULL | |
| addr | varchar(200) | YES | | NULL | |
| birth | year(4) | YES | | NULL | |
| salary | float(8,2) | YES | | NULL | |
| tel | int(11) | YES | | NULL | |
| married | tinyint(1) | YES | | NULL | |
+----------+------------------------+------+-----+---------+-------+ mysql> show columns from user;
+----------+------------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+------------------------+------+-----+---------+-------+
| id | smallint(6) | YES | | NULL | |
| username | varchar(20) | YES | | NULL | |
| age | tinyint(4) | YES | | NULL | |
| sex | enum('男','女','保密') | YES | | NULL | |
| email | varchar(50) | YES | | NULL | |
| addr | varchar(200) | YES | | NULL | |
| birth | year(4) | YES | | NULL | |
| salary | float(8,2) | YES | | NULL | |
| tel | int(11) | YES | | NULL | |
| married | tinyint(1) | YES | | NULL | |
+----------+------------------------+------+-----+---------+-------+
10 rows in set (0.00 sec)
3.创建主键与自增长
7. 创建主键.(可以省掉primary 关键字.)
mysql> create table if not exists user1(
-> id int primary key,
-> username varchar(20)
-> );
Query OK, 0 rows affected, 1 warning (0.00 sec) 查看表.
mysql> desc user1;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| id | int(11) | NO | PRI | NULL | |
| username | varchar(20) | YES | | NULL | |
+----------+ -------------+------+-----+---------+-------+
2 rows in set (0.00 sec) mysql> 8.设置复合主键.
mysql> create table if not exists user2(
-> id int,
-> username varchar(20),
-> card char(18),
-> primary key(id,card)
-> );
Query OK, 0 rows affected (0.04 sec) 9. 自增长. auto_increment mysql> create table if not exists user10(
-> id smallint key auto_increment,
-> username varchar(20)
-> );
Query OK, 0 rows affected (0.04 sec) mysql> desc user10;
+----------+-------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+----------------+
| id | smallint(6) | NO | PRI | NULL | auto_increment |
| username | varchar(20) | YES | | NULL | |
+----------+-------------+------+-----+---------+----------------+
2 rows in set (0.00 sec)
4.非空、默认与唯一约束
10. 非空. NOT NULL. mysql> create table if not exists user7(
-> id int unsigned key auto_increment,
-> username varchar(20) not null,
-> password char(32) not null,
-> age tinyint unsigned
-> );
Query OK, 0 rows affected (0.06 sec) mysql> desc user7;
+----------+---------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+---------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| username | varchar(20) | NO | | NULL | |
| password | char(32) | NO | | NULL | |
| age | tinyint(3) unsigned | YES | | NULL | |
+----------+---------------------+------+-----+---------+----------------+
4 rows in set (0.00 sec) mysql> insert user7(username,password) values("king","king")
-> ;
Query OK, 1 row affected (0.00 sec) 11. DEFAULT 默认值. mysql> create table if not exists user8(
-> id int unsigned key auto_increment,
-> username varchar(20) not null,
-> password char(32) not null,
-> age tinyint unsigned default 19,
-> addr varchar(50) not null default "北京"
-> );
Query OK, 0 rows affected (0.04 sec) mysql> desc user8
-> ;
+----------+---------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+---------------------+------+-----+---------+----------------+
| id | int(10) unsigned | NO | PRI | NULL | auto_increment |
| username | varchar(20) | NO | | NULL | |
| password | char(32) | NO | | NULL | |
| age | tinyint(3) unsigned | YES | | 19 | |
| addr | varchar(50) | NO | | 北京 | |
+----------+---------------------+------+-----+---------+----------------+
5 rows in set (0.00 sec) 12. 唯一约束.unique mysql> create table if not exists user11(
-> id tinyint unsigned key auto_increment,
-> username varchar(20) not null unique ,
-> card char(18) unique
-> );
Query OK, 0 rows affected, 1 warning (0.01 sec) mysql> desc user11;
+----------+---------------------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+---------------------+------+-----+---------+----------------+
| id | tinyint(3) unsigned | NO | PRI | NULL | auto_increment |
| username | varchar(20) | NO | UNI | NULL | |
| card | char(18) | YES | UNI | NULL | |
+----------+---------------------+------+-----+---------+----------------+
3 rows in set (0.00 sec) mysql> insert user11(username) value("a");
Query OK, 1 row affected (0.01 sec) mysql> select * from user11;
+----+----------+------+
| id | username | card |
+----+----------+------+
| 1 | a | NULL |
+----+----------+------+
1 row in set (0.00 sec)
5.重命名、添加字段
13. 重命名表名.
mysql> create table user13(
-> id smallint unsigned key auto_increment,
-> username varchar(20)not null unique,
-> password char(32) not null,
-> email varchar(50) not null default "393376780@qq.com",
-> age tinyint unsigned default 18,
-> addr varchar(200) not null default " 北京",
-> salary float(6,2),
-> regTime int unsigned,
-> face char(100) not null default "default.jpg"
-> );
Query OK, 0 rows affected (0.03 sec) mysql> desc user13;
+----------+----------------------+------+-----+------------------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+----------------------+------+-----+------------------+----------------+
| id | smallint(5) unsigned | NO | PRI | NULL | auto_increment |
| username | varchar(20) | NO | UNI | NULL | |
| password | char(32) | NO | | NULL | |
| email | varchar(50) | NO | | 393376780@qq.com | |
| age | tinyint(3) unsigned | YES | | 18 | |
| addr | varchar(200) | NO | | 北京 | |
| salary | float(6,2) | YES | | NULL | |
| regTime | int(10) unsigned | YES | | NULL | |
| face | char(100) | NO | | default.jpg | |
+----------+----------------------+------+-----+------------------+----------------+
9 rows in set (0.00 sec) mysql> alter table user13 rename to user31;
Query OK, 0 rows affected (0.01 sec) mysql> rename table user31 to user13;
Query OK, 0 rows affected (0.01 sec) 14. 添加字段. mysql> alter table user13 add card char(18);
Query OK, 0 rows affected (0.07 sec)
Records: 0 Duplicates: 0 Warnings: 0 #在username字段后面添加字段.
mysql> alter table user13 add test10 int not null default 100 after username;
Query OK, 0 rows affected (0.07 sec)
Records: 0 Duplicates: 0 Warnings: 0 #在第一个字段位置添加.
mysql> alter table user13 add test100 int not null default 100 first;
Query OK, 0 rows affected (0.07 sec)
Records: 0 Duplicates: 0 Warnings: 0 15. 删除字段. mysql> alter table user13 drop test10;
Query OK, 0 rows affected (0.11 sec)
Records: 0 Duplicates: 0 Warnings: 0 16. 修改字段属性 mysql> alter table user13 modify card varchar(200);
Query OK, 0 rows affected (0.08 sec)
Records: 0 Duplicates: 0 Warnings: 0 mysql> alter table user13 change card cardchange char(44);
Query OK, 0 rows affected (0.08 sec)
Records: 0 Duplicates: 0 Warnings: 0 mysql> desc user13;
+------------+----------------------+------+-----+------------------+----------------+
| Field | Type | Null | Key | Default | Extra |
+------------+----------------------+------+-----+------------------+----------------+
| test100 | int(11) | NO | | 100 | |
| id | smallint(5) unsigned | NO | PRI | NULL | auto_increment |
| username | varchar(20) | NO | UNI | NULL | |
| password | char(32) | NO | | NULL | |
| email | varchar(50) | NO | | 393376780@qq.com | |
| age | tinyint(3) unsigned | YES | | 18 | |
| addr | varchar(200) | NO | | 北京 | |
| salary | float(6,2) | YES | | NULL | |
| regTime | int(10) unsigned | YES | | NULL | |
| face | char(100) | NO | | default.jpg | |
| cardchange | char(44) | YES | | NULL | |
+------------+----------------------+------+-----+------------------+----------------+
11 rows in set (0.00 sec)
6. 主键与索引操作
1. 复合索引.
mysql> alter table user1 add primary key(id,username);
Query OK, 0 rows affected (0.09 sec)
Records: 0 Duplicates: 0 Warnings: 0 mysql> desc user1;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| id | int(11) | NO | PRI | NULL | |
| username | varchar(20) | NO | PRI | NULL | |
+----------+-------------+------+-----+---------+-------+
2 rows in set (0.00 sec) 2. 删除主键
mysql> alter table user1 drop primary key;
Query OK, 0 rows affected (0.52 sec)
Records: 0 Duplicates: 0 Warnings: 0 mysql> desc user1;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| id | int(11) | NO | | NULL | |
| username | varchar(20) | YES | | NULL | |
+----------+-------------+------+-----+---------+-------+
2 rows in set (0.00 sec) 3. 唯一索引. mysql> alter table user1 add unique(username);
Query OK, 0 rows affected (0.03 sec)
Records: 0 Duplicates: 0 Warnings: 0 mysql> desc user1;
+----------+-------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+----------+-------------+------+-----+---------+-------+
| id | int(11) | NO | PRI | NULL | |
| username | varchar(20) | NO | PRI | NULL | |
+----------+-------------+------+-----+---------+-------+
2 rows in set (0.00 sec) mysql> alter table user12 add constraint symbol unique key uni_card(face);
Query OK, 0 rows affected (0.03 sec)
Records: 0 Duplicates: 0 Warnings: 0 mysql> desc user12;
+----------+----------------------+------+-----+------------------+----------------+
| Field | Type | Null | Key | Default | Extra |
+----------+----------------------+------+-----+------------------+----------------+
| id | smallint(5) unsigned | NO | PRI | NULL | auto_increment |
| username | varchar(20) | NO | UNI | NULL | |
| password | char(32) | NO | | NULL | |
| email | varchar(50) | NO | | 393376780@qq.com | |
| age | tinyint(3) unsigned | YES | | 18 | |
| addr | varchar(200) | NO | | 北京 | |
| salary | float(6,2) | YES | | NULL | |
| regTime | int(10) unsigned | YES | | NULL | |
| face | char(100) | NO | UNI | default.jpg | |
+----------+----------------------+------+-----+------------------+----------------+
9 rows in set (0.00 sec) 修改默认引擎.
mysql> alter table user1 ENGINE=MyISAM;
Query OK, 0 rows affected (0.04 sec)
Records: 0 Duplicates: 0 Warnings: 0
Mysql-基础+安装指南的更多相关文章
- Mysql基础代码(不断完善中)
Mysql基础代码,不断完善中~ /* 启动MySQL */ net start mysql /* 连接与断开服务器 */ mysql -h 地址 -P 端口 -u 用户名 -p 密码 /* 跳过权限 ...
- MYSQL基础操作
MYSQL基础操作 [TOC] 1.基本定义 1.1.关系型数据库系统 关系型数据库系统是建立在关系模型上的数据库系统 什么是关系模型呢? 1.数据结构可以规定,同类数据结构一致,就是一个二维的表格 ...
- 【夯实Mysql基础】记一次mysql语句的优化过程
1. [事件起因] 今天在做项目的时候,发现提供给客户端的接口时间很慢,达到了2秒多,我第一时间,抓了接口,看了运行的sql,发现就是 2个sql慢,分别占了1秒多. 一个sql是 链接了5个表同时使 ...
- MySQL基础(非常全)
MySQL基础 一.MySQL概述 1.什么是数据库 ? 答:数据的仓库,如:在ATM的示例中我们创建了一个 db 目录,称其为数据库 2.什么是 MySQL.Oracle.SQLite.Access ...
- mysql 基础篇5(mysql语法---数据)
6 增删改数据 -- ********一.增删改数据********* --- -- 1.1 增加数据 -- 插入所有字段.一定依次按顺序插入 INSERT INTO student VALUES(1 ...
- MySQL 基础语句
MySQL 基础语句 多个知识点 ----------------------------------------------------------------------------------- ...
- MySQL:基础—数据分组
MySQL:基础-数据分组 1.为什么要分组: 比如一个表中有多条订单记录,如上图,每条记录对应着一个商品,现在我要查询 每个商品被订购的单数 准备出货?也就是找到每个商品被订购的数量. 如果只找一个 ...
- MySQL基础学习总结
1.MySQL基础概念 mysql逻辑架构如下: 每个客户端连接都会在服务器中拥有一个线程,这个连接的查询只会在这个单独的线程中执行. MySQL是分层的架构.上层是服务器层的服务和查询执行引擎,下层 ...
- MySQL基础(五)——视图
MySQL基础(五)--视图
- MySQL基础(四)——索引
MySQL基础(四)--索引
随机推荐
- .net 4.0的Lazy<T>方法,反射实现延迟加载。
//自己山寨.public class YaLazy<T> { private bool _isValueCreated = false; public bool IsValueCreat ...
- Html使用Iframe无刷新上传文件,后台接收
html代码:我是发送请求到teacher_center.aspx,不是到.ashx一般处理程序里,需要加 runat="server",有空我再试试发送请求到 .ashx 里 & ...
- ServiceStack支持跨域提交
//ServiceStack对浏览器有一定的限制 //修改AppHost.cs文件 using Funq;using ServiceStack;using ServiceStackTest.Servi ...
- Codeforces 665A. Buses Between Cities 模拟
A. Buses Between Cities time limit per test: 1 second memory limit per test: 256 megabytes input: s ...
- Jmeter运行过程中如何让Fiddler同时可以抓获到服务器的应答报文
在默认情况下,Jmeter运行过程中,Fiddler是抓不到对应的应答报文的. 但是,在某些时候,我们希望分析Jmeter执行失败的原因,想了解Jmeter获取到的应答报文是否有问题,就需要同服务器返 ...
- 学习类App原型制作分享-Wokabulary
Wokabulary是一款多功能词汇学习App,可以学习多国语言词汇.原型的引导页面采用的图片+文字+分页器,需要注意的是分页器选中位置要与页面顺序一致.其次是语言的选择页面,在前面给大家介绍过滚动区 ...
- asio 广播代码示例
代码网络收集 修改了一个编译的小问题 客户端 // Client.cpp : 定义控制台应用程序的入口点. // #include "stdafx.h" #include < ...
- LNMP 网站搭建
https://lnmp.org/ lnmp这个一键安装:https://lnmp.org/install.html wget -c http://soft.vpser.net/lnmp/lnmp1. ...
- crontab误删除
命令如下: cat /var/log/cron* | grep -i "`which cron`" > ./all_temp cat ./all_temp | grep -v ...
- 常见的web服务器软件分类
(1)ApacheApache是世界使用排名第一的Web服务器软件.它可以运行在几乎所有广泛使用的计算机平台上.Apache源于NCSAhttpd服务器,经过多次修改,成为世界上最流行的Web服务器软 ...