79141915

Date: 2024-10-30 16:08:00
Score: 0.5
Natty:
Report link

In SQL union remove the duplicated row, so did you try to debugging the second part of union by using an UNION ALL ?

Example

SELECT t1.id, t1.name, t1.city
FROM TEST1 AS t1
UNION ALL
SELECT t2.prod_id, t2.prod_desc, t2.location
FROM TEST2 AS t2;
Reasons:
  • Whitelisted phrase (-2): did you try
  • Low length (0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Ahmed