Please let me know, Could I get data from DB2 using command SQL: LEFT JOIN
and INNER JOIN in web application PHP?
Thanks
Marcin
You can read more about the SELECT syntax for joins at
http://publib.boulder.ibm.com/infocenter/db2help/topic/com.ibm.db2.udb.doc/admin/r0000875.htm#HDRJOINTBL
Here's an example of an INNER JOIN statement from that topic:
SELECT * FROM J1 INNER JOIN J2 ON W=Y
Dan