zoukankan      html  css  js  c++  java
  • 图片管理下载逻辑

    --图片管理 下载逻辑
    DECLARE @paperGuids varchar(200)
    DECLARE @paperGuidFirst varchar(200)
    DECLARE @paperNameFirst varchar(200)
    DECLARE @DepartmentGuid varchar(200)
    DECLARE @DepartmentName varchar(200)
    declare @paperGuidPosition int
    DECLARE @guid varchar(50)
    -- 给变量赋值(初值)
    set @guid = '00231a0f771e4c22ab6803399e8b6360'
    set @paperGuidFirst = ''
    set @paperNameFirst = ''
    set @DepartmentGuid = ''
    set @DepartmentName = ''
    -- 查询部门Guid和部门名称
     select @DepartmentName = tBaseDepartment.sName,
         @DepartmentGuid = tBaseDepartment.sGuidID,
         @paperGuids = tBaseOperator. sGuidNewspapersID
     from tBaseOperator join tBaseDepartment
       on tBaseOperator.sGuidDepartmentID= tBaseDepartment.sGuidID
     where tBaseOperator.sGuidID= @guid
    -- 根据人员配置的报纸的Guid 找出第一个报纸的Guid
    if (@@rowcount > 0)
    begin
     
      SELECT @paperGuidPosition =  CHARINDEX(';',@paperGuids)
      if (@paperGuidPosition > 0)
          set @paperGuidFirst = LEFT(@paperGuids,@paperGuidPosition-1)
       else
         set @paperGuidFirst = @paperGuids
    end
    --  查询报纸名称
    select @paperNameFirst = sName  from tBaseNewspapers where sGuidID= @paperGuidFirst
    -- 传递结果
    select @DepartmentGuid as DepartmentGuid,
           @DepartmentName as DepartmentName ,
           @paperGuidFirst as paperGuid,
           @paperNameFirst as paperName

  • 相关阅读:
    netcore3.0使用Session
    docker redis使用
    协变和逆变
    HashTable、Dictionary、ConcurrentDictionary三者区别
    设计模式-行为型-解释器模式
    设计模式-行为型-备忘录模式
    jq实现批量全选与反选
    call()和apply()的用法及区别,看这个例子就明白了
    谈谈对闭包的理解
    export,import和export default的区别
  • 原文地址:https://www.cnblogs.com/zhwl/p/2351305.html
Copyright © 2011-2022 走看看