sql case when exists in another table
SELECT A.name,
CASE WHEN B.name IS NOT NULL
THEN 'common'
ELSE 'not common'
END
FROM table1 A
LEFT JOIN table2 B
ON A.name = B.name
sql case when exists in another table
SELECT A.name,
CASE WHEN B.name IS NOT NULL
THEN 'common'
ELSE 'not common'
END
FROM table1 A
LEFT JOIN table2 B
ON A.name = B.name
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