美文网首页
SQL变量的定义及使用

SQL变量的定义及使用

作者: ettingshausen | 来源:发表于2016-12-08 10:01 被阅读31次
    • SQL Server
    declare
    @v_code varchar(4);
    select @v_code=CountryRegionCode from Person.CountryRegion where @@ROWCOUNT=1;
    select * from Person.CountryRegion where CountryRegionCode=@v_code
    

    相关文章

      网友评论

          本文标题:SQL变量的定义及使用

          本文链接:https://www.haomeiwen.com/subject/aazlmttx.html