D
Demian Valle
I have created a crosstab query in Access that looks like
the following in SQL view:
TRANSFORM Count(table1.seqno) AS CountOfseqno
SELECT table1.event_hour, Count(table1.seqno) AS [Total Of
seqno]
FROM table1
GROUP BY table1.event_hour
PIVOT table1.event_day
I would like to be able to run this as a Pass-Through
query and directly in Query Analyzer in SQL 2000.
However, SQL does not seem to like this syntax. Does
anyone have any ideas on how to change this query so that
it is usable with SQL 2000?
Thanks.
the following in SQL view:
TRANSFORM Count(table1.seqno) AS CountOfseqno
SELECT table1.event_hour, Count(table1.seqno) AS [Total Of
seqno]
FROM table1
GROUP BY table1.event_hour
PIVOT table1.event_day
I would like to be able to run this as a Pass-Through
query and directly in Query Analyzer in SQL 2000.
However, SQL does not seem to like this syntax. Does
anyone have any ideas on how to change this query so that
it is usable with SQL 2000?
Thanks.