sql >> Databasteknik >  >> RDS >> Mysql

MySQL-felhjälp:Okänd kolumn i On-klausul

Problemet är att tabellen som sammanfogas i din ON klausul finns inte i frågan ännu.

Istället:

SELECT
    esjp_section_refs.section_label,
    esjp_content.primary_key, esjp_content.content, esjp_content.summary_id, 
    esjp_role_refs.role_label, 
    esjp_users.first_name, esjp_users.last_name,
    FROM_UNIXTIME(esjp_content.sys_time)
FROM esjp_content
    INNER JOIN esjp_layout ON esjp_content.primary_key = esjp_layout.content_id 
    INNER JOIN esjp_section_refs ON esjp_layout.section_id = esjp_section_refs.primary_key    
    INNER JOIN esjp_role_refs ON esjp_content.role_ref = esjp_role_refs.primary_key
    INNER JOIN esjp_users ON esjp_content.author_id = esjp_users.primary_key
WHERE esjp_layout.primary_key = 1
ORDER BY esjp_layout.section_id ASC, esjp_layout.position ASC ;

Med andra ord måste du gå med i en tabell genom att koppla den till en tabell som redan finns i din fråga. De måste förenas i ordning, så att säga.



  1. Flyttade XAMPP-mappen till ny dator, får nu (XAMPPERrrorDomain error 1.) när jag försöker starta MySQL

  2. MySQL importera databas men ignorera specifik tabell

  3. json_encode med mysql-innehåll och omljud i utf-8

  4. Hur använder du SYS_REFCURSUR i välj för uppdatering i pl/sql