当前位置:网站首页>MySql 创建索引
MySql 创建索引
2022-08-03 04:08:00 【m0_54853503】
– (1)自动创建索引
– 创建表index_book并为其添加索引(创建主键和唯一约束)
create table index_book(
id int(8) primary key auto_increment,
name varchar(20),
price float(3),
date varchar(20)
)
# 查看index_book中的索引
– 语法: show index from 表名
show index from index_book
– (2)手动创建索引
# 创建表index_book1给id添加索引
create table index_book1(
id int(8) ,
name varchar(20),
price float(3),
date varchar(20),
index(id)
)
# 创建表index_book2给sname添加唯一索引
create table index_book2(
id int(8) ,
sname varchar(20),
price float(3),
date varchar(20),
unique index(sname)
)
– (3)主键创建索引
# 创建表index_book3给id添加主键索引
create table index_book3(
id int(8) ,
sname varchar(20),
price float(3),
date varchar(20),
primary key (id)
)
– (4)全文创建索引
#创建表index_book4给info添加索引
create table index_book4(
id int(8) ,
sname varchar(20),
price float(3),
date varchar(20),
info varchar(200),
fulltext index(info)
)
– (5)空间索引的创建
– 注: 空间类型数据添加值不能为空 not null
#创建表index_book5给sook字段类型为point添加索引
create table index_book5(
id int(8) ,
sname varchar(20),
price float(3),
date varchar(20),
sook point not null,
spatial index(sook)
)
– (6)复合索引的创建
#创建表index_book6给id和date添加复合索引
create table index_book6(
id int(8) ,
sname varchar(20),
price float(3),
date varchar(20),
index(id,date)
)
先自我介绍一下,小编13年上师交大毕业,曾经在小公司待过,去过华为OPPO等大厂,18年进入阿里,直到现在。深知大多数初中级java工程师,想要升技能,往往是需要自己摸索成长或是报班学习,但对于培训机构动则近万元的学费,着实压力不小。自己不成体系的自学效率很低又漫长,而且容易碰到天花板技术停止不前。因此我收集了一份《java开发全套学习资料》送给大家,初衷也很简单,就是希望帮助到想自学又不知道该从何学起的朋友,同时减轻大家的负担。添加下方名片,即可获取全套学习资料哦
边栏推荐
- Linux-Docker-Redis安装
- 基于WPF重复造轮子,写一款数据库文档管理工具(一)
- 基于Streamlit的YOLOv5ToX模型转换工具(适用YOLOv5训练出来的模型转化为任何格式)
- 基于 jetpack compose,使用MVI架构+自定义布局实现的康威生命游戏
- Shenzhen Offline Registration|StarRocks on AWS: How to conduct rapid and unified analysis of real-time data warehouses
- 安装ambari
- 单元测试是什么?怎么写?主要测试什么?
- ESP8266-Arduino编程实例-LED点阵驱动(基于Max7219)
- "Obs" start pushing flow failure: the Output. The StartStreamFailed call process
- 2.何为张量
猜你喜欢
Record some bugs encountered - when mapstruct and lombok are used at the same time, the problem of data loss when converting entity classes
工程水文学试题库
种草一个让程序员男友编程时,记住一辈子的 IDEA 神仙插件!
MATLAB(5)绘图
基于flowable的upp(统一流程平台)运行性能优化(2)
【动态规划--01背包】HJ16 购物单
DOM破环和两个实验的复现
多线程使用哈希表
Shell编程的条件语句
OpenFOAM extracts equivalency and calculates area
随机推荐
(2022牛客多校五)H-Cutting Papers(签到)
I ported GuiLite to STM32F4 board
Auto. Js scripts run time calculated Pro
硬件设计哪些事-PCB设计那些事
easyswoole的mysqli 事务怎么写
中非合作论坛非洲产品电商推广季启动 外交部:推动中非合作转型升级
3.张量运算
How many moments have you experienced the collapse of electronic engineers?
移植RT-Thread编译报错thumb conditional instruction should be in IT block
12.机器学习基础:评估机器学习模型
Redis-Redisson介绍和用途
【STM32】入门(三):按键使用-GPIO端口输出控制
数字3d虚拟交互展厅顺应时代发展需求和趋势
关于#sql#的问题,如何解决?
【基础数学--埃氏筛】204. 计数质数
ScanNet数据集讲解与点云数据下载
Dialog manager in the fourth chapter: the dialog message loop
Smart fitness gesture recognition: PP - TinyPose build AI virtual trainer!
阿里面试官:聊聊如何格式化Instant
2022河南萌新联赛第(四)场:郑州轻工业大学 E - 睡大觉