tengo mi propio tipo:¿Puede la función T-SQL devolver el tipo de tabla definido por el usuario?
CREATE TYPE MyType AS TABLE
(
foo INT
)
y una función que recibe como parámetro:
CREATE FUNCTION Test
(
@in MyType READONLY
)
RETURNS @return MyType
AS
...
puede devolverlo MyType
o únicamente TABLE
repitiendo la estructura de MyType:
CREATE FUNCTION Test
(
@in MyType READONLY
)
RETURNS @return TABLE (foo INT)
AS
...
?
¿lo has intentado? –
@KM: Sí y no tuvo éxito. Así que quiero aclarar – abatishchev
@GSerg: sí, de acuerdo. – abatishchev