Answers for "intersect and count in sql"

0

intersect and count in sql

SELECT COUNT(*) FROM
(
 SELECT id FROM table1 where  col1 like '%abcd%'
 intersect
 SELECT id from table2 where col2 like '%efgh%'
) I
Posted by: Guest on March-17-2022

Python Answers by Framework

Browse Popular Code Answers by Language