M
myname
Hello,
I linked Access to an Ingres II database through ODBC.
I'm trying to execute :
SELECT DatePart("yyyy",abs.dthdebabs) as Year, Count(cdtya) as Nbr
FROM abs
GROUP BY DatePart("yyyy",abs.dthdebabs);
But it fails everytime telling me :
"Column 'dthde,abs' not found in any specified table (#2102)"
(the name of the column IS misspelled)
When I remove the GROUP BY and the COUNT, if works just fine.
I don't get it... what am I doing wrong ?
Thanks !
I linked Access to an Ingres II database through ODBC.
I'm trying to execute :
SELECT DatePart("yyyy",abs.dthdebabs) as Year, Count(cdtya) as Nbr
FROM abs
GROUP BY DatePart("yyyy",abs.dthdebabs);
But it fails everytime telling me :
"Column 'dthde,abs' not found in any specified table (#2102)"
(the name of the column IS misspelled)
When I remove the GROUP BY and the COUNT, if works just fine.
I don't get it... what am I doing wrong ?
Thanks !