Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. SELECT node.title, field_data_body.body_value, taxonomy_term_data.name AS ForumCategory FROM Node
  2. LEFT JOIN field_data_body ON Node.nid = field_data_body.entity_id
  3. LEFT JOIN taxonomy_index ON Node.nid = taxonomy_index.nid
  4. LEFT JOIN taxonomy_term_data ON taxonomy_index.tid = taxonomy_term_data.tid
  5. where type = 'conversation' and Node.nid = 112;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement