Maybe that’s only possible with SQLITE but is there also a trick to let H2 prefix all the returned columns with table name of a given select * query?
I need to know which table provides which column.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Prefix the “SELECT *” statement with “EXPLAIN SELECT *” which gives only the execution plan but nevertheless all returned columns in a real query.