Andy Davies wrote:
> select t1.*, isnull(t2.pk,'####') alarm, t2.somestuff from t2 left outer
> join t1 on t2.pk=t1.pk [where t2.pk is null]
>
>   

Isn't that what I did (but didn't work)??  ::

select t1.*, IFNULL('*',space(1)) as cBilled
  from transactions t1
  left join invoice_details d1
   on d1.itransid = t1.iid
where t1.iacctid = 32



-- 
Michael J. Babcock, MCP
MB Software Solutions, LLC
http://mbsoftwaresolutions.com
http://fabmate.com
"Work smarter, not harder, with MBSS custom software solutions!"



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
Searchable Archive: http://leafe.com/archives/search/profox
This message: http://leafe.com/archives/byMID/profox/[EMAIL PROTECTED]
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to