--- Cultural Sublimation <cultural_sublimation@xxxxxxxxx> wrote: > > CREATE FUNCTION get_movies () > > RETURNS SETOF get_movies_t > > LANGUAGE sql STABLE > > AS > > $$ > > SELECT movie_id, movie_name FROM movies > > WHERE movie_id NOT NULL AND movie_name NOT NULL; > > $$ > > > SELECT movie_id, movie_name FROM get_movies (); > => returns a SETOF of (int4 NULL, text NULL) I don't know if this will work, but here is another idea: SELECT movie_id, movie_name FROM get_movies() AS ( int4 NOT NULL, text NOT NULL ); Regards, Richard Broersma Jr. ---------------------------(end of broadcast)--------------------------- TIP 4: Have you searched our list archives? http://archives.postgresql.org/