79515138

Date: 2025-03-17 16:20:50
Score: 1.5
Natty:
Report link

This is happening because you're generating newId in a subquery; there's no reason to do this.

Here's what you want instead:

SELECT *, gen_random_uuid() AS newId FROM tblCustomer;
Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: PJM