ホームページ > データベース > mysql チュートリアル > sql server 标量值函数实例与不能调用原因分析

sql server 标量值函数实例与不能调用原因分析

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
リリース: 2016-06-07 17:47:32
オリジナル
1514 人が閲覧しました

sql server 标量值函数实例与不能调用原因分析,MS SQL 标量值函数,应该在函数前面加上 \"dbo.\",否则会报 “不是可以识别的 内置函数名称”错误

sql server 标量值函数实例与不能调用原因分析
--标量值函数

set ansi_nulls on
go
set quoted_identifier on
go
-- =============================================
-- author:
-- create date:
-- description:
-- =============================================
create function
(
-- add the parameters for the function here

)
returns
as
begin
-- declare the return variable here
declare

-- add the t-sql statements to compute the return value here
select =

-- return the result of the function
return

end


用 ms sql 标量值函数,应该在函数前面加上 "dbo.",否则会报 “不是可以识别的 内置函数名称”错误。例如

  

  declare @whichdb tinyint;
    select @whichdb = user_getwhichdb(1);--看看是哪个的

=================================================

--标量值函数

alter function [dbo].[user_getwhichdb]
(
    @userid int = 0
)
returns tinyint
with execute as caller
as
begin
    declare @whichdb tinyint;
    set @whichdb = 1;
    if @userid >= 115098
        set @whichdb = 2;
   
    return (@whichdb);
end

関連ラベル:
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
SQLファイル
から 1970-01-01 08:00:00
0
0
0
php - prepare と SQL のオーバーヘッド?
から 1970-01-01 08:00:00
0
0
0
SQLの最適化または
から 1970-01-01 08:00:00
0
0
0
SQL ステートメントを出力する
から 1970-01-01 08:00:00
0
0
0
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート