Jump to content

Base table or view not found HELP!


imperium2335

Recommended Posts

Hi,

 

Does anyone know why it won't recognise my abstract table? :confused:

 

I get the error " PDO::query() [pdo.query]: SQLSTATE[42S02]: Base table or view not found: 1146 Table 'overseer_ims.invoicetable' doesn't exist"

 

SELECT

    (SELECT SUM(invoiceTable.total) FROM invoiceTable WHERE invoiceTable.jobRef = jobs.id) AS total

FROM invoices_out, jobs, invoices_out_reference, enquiries, entity_details,
    (SELECT jobRef, SUM(invoices_out.net+invoices_out.vat) AS total
        FROM invoices_out, invoices_out_reference
        WHERE invoices_out_reference.invoiceRef = invoices_out.id
        GROUP BY jobRef)
    AS invoiceTable

WHERE invoices_out_reference.jobRef = jobs.id
AND invoices_out_reference.invoiceRef = invoices_out.id
AND enquiries.id = jobs.enquiryRef
AND invoiceTable.jobRef = jobs.id
AND enquiries.entityRef = entity_details.id

Link to comment
https://forums.phpfreaks.com/topic/260405-base-table-or-view-not-found-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.