Viewing 3 posts - 1 through 3 (of 3 total)
The actual query is/was:
SELECT
fld_3003 AS 'Contact'
,MAX(fld_4101) AS 'History'
,MAX(fld_3900) AS 'URL1'
,MAX(fld_3901) AS 'URL2'
,MAX(fld_3902) AS 'URL3'
FROM
cont_hist_t100
GROUP BY
'Contact'
Once I used just the actual column names and removed the "AS '...' " it worked!...
March 20, 2012 at 5:03 am
Appreciate the suggestion, but yes, on the actual table it throws an error:
"Each GROUP BY expression must contain at least one column that is not an outer reference"
March 19, 2012 at 3:27 pm
My apologies. I was simply frustrated at a couple other forums while following their requests, and... no excuses, right?!
So is this what you are requesting (below)? I have...
March 19, 2012 at 2:43 pm
Viewing 3 posts - 1 through 3 (of 3 total)