zoukankan      html  css  js  c++  java
  • SQL语句练习实例之九 ——对字符串进行排序

    ----对字符串进行排序
    ---对字符串DCCBBABA 执行之后变成 AABBBCCD
    declare @str nvarchar(20)
    set @str='DCCBBABA'
     select replicate('A',(len(@str)-len(replace(@str,'A',''))))+
    replicate('B',(len(@str)-len(replace(@str,'B','')))) +
    replicate('C',(len(@str)-len(replace(@str,'C','')))) +
    replicate('D',(len(@str)-len(replace(@str,'D',''))))

    ---电影院座位预订(未成功)
    ---电影院预定连号的座位号约束
    --预订规则是两片连号的座位不能重叠
    create table filmeSeat
    (
    reserver nvarchar(20) not null primary key
    ,startSeat int not null,
    finishSeat int not null
    )
    go
    insert filmeSeat
    select '张三',1,4 union
    select '李四',6,7 union
    select '王五',21,24 union
    select '赵六',11,14 union
    select '钱七',16,18

    go
    drop table filmeSeat
    --go
    --create table filmeSeat
    --(
    --reserver nvarchar(20) not null primary key
    --,startSeat int not null,
    --finishSeat int not null,
    --check(startSeat<=finishSeat))
    --go
    ------在Check中不允许使用子查询。只允许使用标量表达式。
    --ALTER TABLE filmeSeat
    --ADD CONSTRAINT no_overlaps
    --check(not exists (select t1.reserver from filmeSeat as t1
    --where filmeSeat.startSeat between t1.startSeat and t1.finishSeat
    --or filmeSeat.finishSeat between t1.startSeat and t1.finishSeat)
    --)

    ----------

  • 相关阅读:
    POJ 1251 Jungle Roads
    1111 Online Map (30 分)
    1122 Hamiltonian Cycle (25 分)
    POJ 2560 Freckles
    1087 All Roads Lead to Rome (30 分)
    1072 Gas Station (30 分)
    1018 Public Bike Management (30 分)
    1030 Travel Plan (30 分)
    22. bootstrap组件#巨幕和旋转图标
    3. Spring配置文件
  • 原文地址:https://www.cnblogs.com/chillsrc/p/2259589.html
Copyright © 2011-2022 走看看