How to get table field list from ZEND SQL even if data not exist

45 Views Asked by At

I looking for table field list from the SQL even if data not exist...

SELECT
    * 
FROM
    tbl1 
LEFT JOIN 
    tbl2 
ON 
    tbl1.p_id = tbl2.f_id

optional : ZEND DB

0

There are 0 best solutions below