sql去重
-
关键字distinct
Select distinct name from A; -
count统计
Select count(*) from (select distinct xing,name from B) as m;
- group分组
Select max(id) ,name from A group by name;
索引
定
- 定义:索引是对数据库表中一列或多列的值进行排序的一种结构,使用索引可快速访问数据库表中的特定信息。索引分为普通索引、唯一索引、主键索引、聚集索引、非聚集索引。索引不会包含有null值的列,索引项可以为null(唯一索引、组合索引等),但是只要列中有null值就不会被包含在索引中。
- 分类:
(1)普通索引:create index index_name on table(column);
或者创建表时指定,create table(…, index index_name column);
(2)唯一索引:类似普通索引,索引列的值必须唯一(