P
Peter Kopke
When I create a Linked Table over a MySQL 5.0 view through ODBC,
some of the fields do not appear in Access. Here is a
simple example:
create table a (
the_key int PRIMARY KEY
);
create table b (
the_key int,
entry int
);
create view c as
SELECT a.the_key, sum(b.entry) as total
FROM a left outer join b on (a.the_key = b.the_key)
GROUP BY a.the_key;
When I create a linked table in Access oon the view c
it only has one field! The total field is ignored.
Can anyone help with this?
Thanks,
Peter Kopke
(e-mail address removed)
some of the fields do not appear in Access. Here is a
simple example:
create table a (
the_key int PRIMARY KEY
);
create table b (
the_key int,
entry int
);
create view c as
SELECT a.the_key, sum(b.entry) as total
FROM a left outer join b on (a.the_key = b.the_key)
GROUP BY a.the_key;
When I create a linked table in Access oon the view c
it only has one field! The total field is ignored.
Can anyone help with this?
Thanks,
Peter Kopke
(e-mail address removed)