zoukankan      html  css  js  c++  java
  • SQLSERVER数据库学习总结七(视图,索引)

    --视图的主意点:不能和表的名称相同,如果某一列为函数,表达式,常量或者与来自多张表的列名相同,必须为列定义名称,不能在试图上创建索引

    if exists(select 1 from sys.sysobjects where [name]='view_recordInfo')
        drop view view_recordInfo
    go

    create view view_recordInfo
    as
        select 记录编号=r.Recordld,会员卡号=r.BeginTime,电脑编号=p.PCId
        from recordInfo r
        inner join PCInfo p
        on r.PCId=p.PCId
    go

    select * from view_recordInfo

    --使用视图的优点:视点集中,简化操作,定制数据,合并分割数据,安全性

    --索引:是一个单独的,物理的数据结构,是数据库的一张表中所包含的值得列表,其中注明了表的各个值所在的存储位置。
    if exists(select 1 from sys.sysindexes where [name] = 'index_cardInfo_CardBalance')
        drop index cardInfo.index_cardInfo_CardBalance
    go

    create nonclustered index index_cardInfo_CardBalance
        on cardInfo(CardBalance)
        with
            fillfactor =40
    go

    --使用索引查询
    select * from cardInfo
        with(index =index_cardInfo_CardBalance)
        where CardBalance between 10 and 100
    go

    --创建索引的原因主要是为了加大检索的速度

  • 相关阅读:
    Python面向对象
    Python函数
    Linux之路
    Python之路
    函数
    动态参数
    python模块的运行机制以及time模块格式转换
    Python PEP8代码规范_20180614
    Oracle 分页查询方法和效率分析
    oracle 12c数据库启动(包含CDB和PDB)以及常见异常处理
  • 原文地址:https://www.cnblogs.com/selfimprove/p/3587614.html
Copyright © 2011-2022 走看看