G
Guest
Anyone know how to do a sub query combining fields in one. Such as
select * from table1 where (fname & " " & lname) = (select fullname from
provpref)
One table has a fullname field while the other has first and last names. Do I
need an IN statement. Anyone know the correct syntax. (I'm afraid of getting a
Cartesian product. The DB has about 9,000 records so that would be time
consuming to display.
Thanks
Jim S
(e-mail address removed)
select * from table1 where (fname & " " & lname) = (select fullname from
provpref)
One table has a fullname field while the other has first and last names. Do I
need an IN statement. Anyone know the correct syntax. (I'm afraid of getting a
Cartesian product. The DB has about 9,000 records so that would be time
consuming to display.
Thanks
Jim S
(e-mail address removed)