zoukankan      html  css  js  c++  java
  • 视图,索引

    (视图,索引)

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

    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

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

     
     
  • 相关阅读:
    nginx命令
    linux 命令
    js导出excel页面数据
    Linux上使用shell脚本查看内存情况(超实用)
    Gson解析json繁杂数据
    纯js制作遮罩层对话框
    简易树形菜单(可伸缩)
    一句实现jquery导航栏
    沁园春-雪
    python day3 int,str,list类型补充
  • 原文地址:https://www.cnblogs.com/Leo_wl/p/3589448.html
Copyright © 2011-2022 走看看