Posts
Sort by recent activity
History window differences
The difference navigated to by Previ or Next is hidden by the immovable 'Update your database to the selected version' bar. The bottom of the right hand side scroll bar is also hidden by this bar.
Table function column names beginning with an @
CREATE FUNCTION fn_MyQuery ()
RETURNS TABLE AS RETURN
(SELECT 'test' [@Attribute], 'element' [Element]);
GO
SELECT fn_m.* FROM fn_MyQuery() fn_m
FOR XML P...