回答編集履歴
2
推敲
answer
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
SQL文中で複数の列返却を利用するにはテーブル・ファンクションとする必要があります。
|
1
|
+
SQL文中で複数の列返却するストアドを利用するにはテーブル・ファンクションとする必要があります。
|
2
2
|
|
3
3
|
```SQL
|
4
4
|
Select * from table(hoge.test('1','2'))
|
1
追記
answer
CHANGED
@@ -3,4 +3,5 @@
|
|
3
3
|
```SQL
|
4
4
|
Select * from table(hoge.test('1','2'))
|
5
5
|
```
|
6
|
-
[1. テーブル・ファンクションとは](http://www.oracle.com/technetwork/jp/database/articles/tsushima/index-1926910-ja.html)
|
6
|
+
[1. テーブル・ファンクションとは](http://www.oracle.com/technetwork/jp/database/articles/tsushima/index-1926910-ja.html)
|
7
|
+
[PL/SQLとPL/pgSQLでの複数行を返す関数の例](https://qiita.com/fujii_masao/items/ac735db55ffda5d0ee38)
|