Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. SELECT DISTINCT(dateOfTweet) AS dateOfTweet FROM (
  2. select * from hashtagSyriza where attitude IS NULL
  3. UNION
  4. select * from hashtagND where attitude IS NULL
  5. UNION
  6. select * from nameTsipras where attitude IS NULL
  7. UNION
  8. select * from nameMitsotakis where attitude IS NULL
  9. ) AS T ORDER BY dateOfTweet ASC;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement