Code :
SELECT dbo.e_entreprise.entr_id, dbo.e_entreprise.entr_raisonsociale, dbo.e_entreprise.entr_mail, dbo.e_agence.agence_rue1, dbo.e_agence.agence_rue2, dbo.e_agence.agence_rue3, dbo.e_agence.agence_codepostal, dbo.e_agence.agence_ville, dbo.e_agence.agence_telephone, (SELECT TOP (1) dbo.c_civilite.civilite_label + ' ' + COALESCE (dbo.c_contact.contact_nom, '') + ' ' + COALESCE (dbo.c_contact.contact_prenom, '') AS nom FROM dbo.c_contact INNER JOIN dbo.c_civilite ON dbo.c_contact.civilite_id = dbo.c_civilite.civilite_id WHERE (dbo.c_contact.contact_privilegie_adher_tag = 1) AND (dbo.c_contact.agence_id = dbo.e_agence.agence_id)) AS contact, dbo.e_agence.departement_id, dbo.e_entreprise.typemembre_id, dbo.e_entreprise.entr_codeape, dbo.e_entreprise.entr_numsiren, dbo.e_entreprise.isotype_id, dbo.e_entreprise.entr_maisonmere_tag, dbo.e_agence.agence_principale_tag, dbo.e_entreprise.entr_reglementcotisation_tag, dbo.e_entreprise.statut_id, dbo.e_entreprise.entr_effectif_comptable, dbo.e_entreprise.entr_effectif_guide FROM dbo.e_entreprise INNER JOIN dbo.e_agence ON dbo.e_entreprise.entr_id = dbo.e_agence.entr_id WHERE (dbo.e_agence.agence_valide = 1) AND (dbo.e_entreprise.entr_valide = 1)
|