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 

  • 相关阅读:
    mysql索引
    struts升级2.3.12到2.5.13
    springboot使用servlet
    springboot拦截器
    开发复制内容
    Linux常用命令
    Eclipse中文语言包安装和设置中文
    eclipse编写代码所遇到的问题
    permission denied (publickey)问题的解决和向github添加ssh key
    工具
  • 原文地址:https://www.cnblogs.com/yasin/p/1542549.html
Copyright © 2011-2022 走看看