chenkovsky opened a new pull request, #1970:
URL: https://github.com/apache/datafusion-sqlparser-rs/pull/1970

   https://spark.apache.org/docs/latest/sql-ref-syntax-qry-select-pivot.html
   
   currently this sql is not supported.
   ```
   SELECT * FROM person
       PIVOT (
           SUM(age) AS a, AVG(class) AS c
           FOR (name, age) IN (('John', 30) AS c1, ('Mike', 40) AS c2)
       );
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to