Guest User

Untitled

a guest
Dec 4th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.22 KB | None | 0 0
  1. SELECT
  2.     count(*) as totalCount
  3. FROM
  4.     master_table AS cc
  5.         LEFT JOIN
  6.     table_name1 AS cst ON (cc.key = cst.original_reference)
  7.         LEFT JOIN
  8.     table_name2 AS cp ON (cc.key = cp.original_reference)
Add Comment
Please, Sign In to add comment