sql inner join
SELECT field1, CASE field2
WHEN condition1 THEN 'result1'
WHEN condition2 THEN 'result2'
ELSE 'result'
END, field3
FROM table_name;
sql inner join
SELECT field1, CASE field2
WHEN condition1 THEN 'result1'
WHEN condition2 THEN 'result2'
ELSE 'result'
END, field3
FROM table_name;
sql inner join
-- Rows with ID existing in both a, b and c
-- JOIN is equivalent to INNER JOIN
SELECT a.ID, a.NAME, b.VALUE1, c.VALUE1 FROM table1 a
JOIN table2 b ON a.ID = b.ID
JOIN table3 c ON a.ID = c.ID
WHERE a.ID >= 1000;
-- ⇓ Test it ⇓ (Fiddle source link)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us