J
John Parker
I have joined 3 tables to show combined information and using the custom SQL
feature in Wizard, everything works okay until I try to filter a certain
field (in this example Manuf)
I have tested the SQL in the origial database using a query (which is where
I got the code) and it works fine, but as soon as I use it online I get the
following error:
=============
Database Results Wizard Error
The operation failed. If this continues, please contact your server
administrator.
=============
Everything works okay until I add the WHERE info:
SELECT Manufacturers.Manuf, Models.Model, Lamps.Lamp_Desc,
Lamps.Lamp_MSRP_Cdn, Lamps.Lamp_SP_Cdn
FROM Manufacturers INNER JOIN (Lamps INNER JOIN Models ON Lamps.Lamp_ID =
Models.Lamp_Desc) ON (Manufacturers.Manuf_ID = Lamps.Manuf) AND
(Manufacturers.Manuf_ID = Models.Manuf)
WHERE (((Manufacturers.Manuf)="Hitachi"));
Hope this makes sense..
John Parker
feature in Wizard, everything works okay until I try to filter a certain
field (in this example Manuf)
I have tested the SQL in the origial database using a query (which is where
I got the code) and it works fine, but as soon as I use it online I get the
following error:
=============
Database Results Wizard Error
The operation failed. If this continues, please contact your server
administrator.
=============
Everything works okay until I add the WHERE info:
SELECT Manufacturers.Manuf, Models.Model, Lamps.Lamp_Desc,
Lamps.Lamp_MSRP_Cdn, Lamps.Lamp_SP_Cdn
FROM Manufacturers INNER JOIN (Lamps INNER JOIN Models ON Lamps.Lamp_ID =
Models.Lamp_Desc) ON (Manufacturers.Manuf_ID = Lamps.Manuf) AND
(Manufacturers.Manuf_ID = Models.Manuf)
WHERE (((Manufacturers.Manuf)="Hitachi"));
Hope this makes sense..
John Parker