Jan 8, 2001 #1 TRYP Programmer Joined Jun 20, 2000 Messages 136 Location US how can i return a 1 column result set as a multi-column single row ???? tryp
Jan 8, 2001 #2 chiph Programmer Joined Jun 9, 1999 Messages 9,878 Location US In your select statement, include as many pseudo-columns as you need. [tt] select MyColumn, ' ', ' ', ' ' from MyTable where MyKey = MyKeyValue; [/tt] Chip H. Upvote 0 Downvote
In your select statement, include as many pseudo-columns as you need. [tt] select MyColumn, ' ', ' ', ' ' from MyTable where MyKey = MyKeyValue; [/tt] Chip H.