Stefan
Tue Jun 07 09:58:53 CDT 2005
You seem to have it working now at
http://ujr.ca/test/CallLog.asp
I get a record when I type in marc
FYI
The code is not visible since it is server side processed
--
_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________
"Mr. Know Nothing" <MrKnowNothing@discussions.microsoft.com> wrote in message
news:BCFCC223-5938-42DC-8F04-CBD117C527A8@microsoft.com...
| Stefan, I have read up on joins and I have made the following query:
|
| SELECT a.* FROM CallLog a INNER JOIN Customer b ON a.customerID =
| b.customerID WHERE b.Fname='marc';
|
| in access the result of the query using joins is the same as my old query:
|
| SELECT CallLog.* FROM CallLog, Customer WHERE
| Customer.CustomerID=CallLog.CustomerID AND Customer.Fname='marc';
|
| Now for some reason when i try eighter in FP they do not want to work. I
| hvae changed my page a little bit and tested through FP if i had my database
| messed up or something but everything seem in place. The only thing i am
| changing from the query you are seeing is ... Fname='marc' in FP is
| Fname=::Fname::
|
| You can look at the page yourself if it helps. (ujr.ca/test/CallLog.asp)
|
| Thanks
|
| "Stefan B Rusynko" wrote:
|
| > You appear to be trying to use data from 2 tables (CallLog & Customer)
| > You need to study Joins
| > See
http://www.aspfaq.com/show.asp?id=2533
| >
| > --
|