I am trying to join two tables with all elements of both tables using the following statement:
select from `results`
join `roster` on results.lydid=roster.lydid
There are no master-detail relationships set ...
After building and loading I get the following error message.
select from `results` join `roster` on results.lydid=roster.lydid where `lydid`=1 and `rdate`='2005-01-07'
I realize the 'where' statement is causing the problem ... but I did not specify any where in my query ...
HELP !!!!!!