79548060

Date: 2025-04-01 08:22:26
Score: 1.5
Natty:
Report link

To select only matching rows from two table:

Use INNER JOIN

select * from table_a as t1 INNER JOIN table_b as t2 ON t1.column1=t2.column1
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ShubhGurukul