Fixed Result Row Specification - Teradata Vantage - Analytics Database

SQL External Routine Programming

Deployment
VantageCloud
VantageCore
Edition
VMware
Enterprise
IntelliFlex
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2026-03-06
dita:mapPath
iiv1628111441820.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
qnu1472247494689
lifecycle
latest
Product Category
Teradata Vantageā„¢

If the CREATE FUNCTION or REPLACE FUNCTION statement specifies a column list for the table function row result, then the table function is said to have a fixed result row specification. The number of result parameters in the table function parameter list matches the number of columns in the column list in the RETURNS TABLE clause of the CREATE FUNCTION or REPLACE FUNCTION statement.

Here is an example of a CREATE FUNCTION statement for a table function with a fixed result row specification:

CREATE FUNCTION getStoreData
  (FileToRead INTEGER)
RETURNS TABLE (StoreNo INTEGER, ItemNo INTEGER, QuantSold INTEGER)
LANGUAGE C
NO SQL
EXTERNAL NAME 'CS!getdata!udfsrc/gs1.c'
PARAMETER STYLE SQL;

In this example, the number of result parameters in the table function parameter list is three.