Member since
02-18-2019
4
Posts
0
Kudos Received
0
Solutions
02-19-2019
06:40 AM
Hello, Your requirement can be fulfilled in two ways. 1. Using the below query. --query "select order_id, order_date, order_customer_id, concat('\"', order_status, '\"') from orders WHERE \$CONDITIONS and order_date LIKE '2014-01-%'" 2. You can further process your actual output in spark and get your expected output. Thanks
... View more