Skip to main content
deleted 9 characters in body
Source Link
user10216583
user10216583

Hi instead of taking all columns, just take what you need by using ANY_VALUE(column_name)ANY_VALUE(column_name). It is working perfectly. Just check.

E.g.:

  SELECT proof_type,any_value("customer_name") as customer_name
  FROM `tbl_customer_pod_uploads`
  WHERE `load_id` = '78' AND `status` = 'Active' GROUP BY `proof_type`
SELECT proof_type,any_value("customer_name") as customer_name
FROM `tbl_customer_pod_uploads`
WHERE `load_id` = '78' AND `status` = 'Active' GROUP BY `proof_type`

Hi instead of taking all columns, just take what you need by using ANY_VALUE(column_name). It is working perfectly. Just check.

E.g.:

  SELECT proof_type,any_value("customer_name") as customer_name
  FROM `tbl_customer_pod_uploads`
  WHERE `load_id` = '78' AND `status` = 'Active' GROUP BY `proof_type`

Hi instead of taking all columns, just take what you need by using ANY_VALUE(column_name). It is working perfectly. Just check.

E.g.:

SELECT proof_type,any_value("customer_name") as customer_name
FROM `tbl_customer_pod_uploads`
WHERE `load_id` = '78' AND `status` = 'Active' GROUP BY `proof_type`
refactored code block for better readability and fixed typos
Source Link

Hi instead of taking all columncolumns, just take what you need by using ANY_VALUE(column_name) it. It is working perfectperfectly. justJust check.

ExE.g.:

  SELECT proof_type,any_value("customer_name") as customer_name
  FROM `tbl_customer_pod_uploads`
  WHERE `load_id` = '78' AND `status` = 'Active' GROUP BY `proof_type`

Hi instead of taking all column just take what you need by using ANY_VALUE(column_name) it is working perfect. just check.

Ex:

  SELECT proof_type,any_value("customer_name") as customer_name FROM `tbl_customer_pod_uploads` WHERE `load_id` = '78' AND `status` = 'Active' GROUP BY `proof_type`

Hi instead of taking all columns, just take what you need by using ANY_VALUE(column_name). It is working perfectly. Just check.

E.g.:

  SELECT proof_type,any_value("customer_name") as customer_name
  FROM `tbl_customer_pod_uploads`
  WHERE `load_id` = '78' AND `status` = 'Active' GROUP BY `proof_type`
Source Link
siva.picky
  • 509
  • 5
  • 17

Hi instead of taking all column just take what you need by using ANY_VALUE(column_name) it is working perfect. just check.

Ex:

  SELECT proof_type,any_value("customer_name") as customer_name FROM `tbl_customer_pod_uploads` WHERE `load_id` = '78' AND `status` = 'Active' GROUP BY `proof_type`