Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.42 KB | None | 0 0
  1. SELECT article.article_id, variants.name_of_variant, article.article_title, article.article_opening, article.article_content, article.article_date_added
  2. FROM ((( article
  3. INNER JOIN authors ON article.article_id = authors.article_id )
  4. INNER JOIN user ON authors.user_id = user.user_id)
  5. INNER JOIN variants ON article.variants_id = variants.variants_id)
  6. WHERE CONCAT(user.given_name, ' ', user.last_name) LIKE '%$searching%'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement