zoukankan      html  css  js  c++  java
  • 视图中利用唯一值列生成自动编号

     Create   Table   T(stcd   varchar(10),name   varchar(10))  
      insert   into   T   select   's001','A'  
      union   all   select   's002','B'  
      union   all   select   's003','C'  
      union   all   select   's004','D'  
      --建视图  
      Create   View   VIEW_T  
      as  
      select * from   T  
      --查询  
      select   autoid=(select   sum(1)   from   VIEW_T   where   stcd<=A.stcd),*  
      from   VIEW_T   A  
      --结果  
      序号                     stcd               name                
      -----------   ----------   ----------    
      1                       s001               A  
      2                       s002               B  
      3                       s003               C  
      4                       s004               D

    Drop   Table   T  
    Drop   View   VIEW_T 

  • 相关阅读:
    Linux下的目录结构
    VM
    代码命名规范
    java环境及配置
    Code::Blocks 使用Cygwin编译加调试
    vscode使用体会
    openwrt编译笔记
    ubuntu20 使用root登录
    程序员如何更好的表达自己的想法- Graphviz:关系图脚本绘制工具-转
    编译codelite心得
  • 原文地址:https://www.cnblogs.com/yasin/p/1542549.html
Copyright © 2011-2022 走看看