1

my query is like : with bigQuery as ( ) select * from bigQuery ;

how to write it with HQL ??

Mike
  • 1,048
  • 2
  • 11
  • 23
Ahmed
  • 25
  • 1
  • 5

1 Answers1

1

You can't. HQL can be used with mapped tables only; you can't use it to create tables on the fly. Use native SQL if you need to do this. further info HERE

Mike
  • 1,048
  • 2
  • 11
  • 23