hi all
Es ist ganz seltsam. Ich bekomme bei einem Select eine Fehlermeldung und bei anderen ähnlichen keine.
Ich habe versucht das Prolem zu isollieren.
„p.description“ scheint mysql einfach nicht zu mögen.
Aber warum ?
Selects mit Fehlermeldung:
SELECT p.description FROM hp_person AS p , session_log_welcome AS s WHERE p.id = s.user_id AND s.session_id =‚8a60eb95bf822c94ff7746aeef470a0f‘
SELECT p.description , s.id FROM hp_person AS p , session_log_welcome AS s WHERE p.id = s.user_id AND s.session_id =‚8a60eb95bf822c94ff7746aeef470a0f‘
SELECT p.description, p.id AS s WHERE p.id = s.user_id AND s.session_id =‚8a60eb95bf822c94ff7746aeef470a0f‘
Selects ohne Fehler :
SELECT id
,firstname
,lastname
,hp_contact_ids
,description
,updated
FROM hp_person
SELECT p.id, p.firstname, p.lastname, p.updated FROM hp_person AS p , session_log_welcome AS s WHERE p.id = s.user_id AND s.session_id =‚8a60eb95bf822c94ff7746aeef470a0f‘