Advertisement
z_californianus

Untitled

Jun 1st, 2020
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT
  2.     CAST(weather.date AS date)
  3. FROM
  4.     weather
  5. RIGHT JOIN transactions ON
  6.     CAST(weather.date AS date) = CAST(transactions.date AS date)
  7. WHERE
  8.     transactions.date IS NULL;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement