-3

SQLサーバークエリのselectステートメントで関数を呼び出す方法は?

select name,function output() from tab where
name='samp'

この上記のクエリでは、関数を呼び出す方法

4

2 に答える 2

2

単に

select name, output() from tab where name='samp'

この関数があなたによって作成されたものであることを一度忘れて、これが や のような組み込み関数であると考えてCount()くださいMax()。それらをどのように呼びますか?

select Count(*) from tab
于 2013-04-03T06:59:19.410 に答える