79656067

Date: 2025-06-06 14:36:32
Score: 0.5
Natty:
Report link

You can simply select the same column twice with different aliases like this:

SELECT    client_code AS cl_code,   client_code AS acc_num FROM tb_accounts; 

This will return two columns, both populated with the values from client_code, but labeled differently as cl_code and acc_num.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: rkoots