Viewing 5 posts - 1 through 5 (of 5 total)
Hello,
You definitely need to have a primary key to update but sometimes you may also need to add a timestamp field to the SQL table you are linked to. I...
June 11, 2007 at 9:36 am
OK if you are only doing a select why not use a SQL View to create the join you need and then link to the view instead of the two...
May 11, 2007 at 9:01 am
OK I tried an experiment and got the same error when I tried to manually write the query in SQL but when I used the Query Designer in...
May 10, 2007 at 1:51 pm
What is the type of query... is it just a select or is it an update?
Thanks,
May 10, 2007 at 1:25 pm
I think you just need to do the first part of what Wayne suggested:
LEFT JOIN test_bank ON (customers.username = test_bank.username
AND products.ccode = test_bank.courseid)
This should fix your problem....
May 10, 2007 at 12:48 pm
Viewing 5 posts - 1 through 5 (of 5 total)