I have created a panel in table in which i am running two sql queries. The drop down that appears has a variable such as driving_license_no, customer_master_id
etc. which i want to change.. Please tell me how to change the variables name.
Asked
Active
Viewed 20 times
-2

harsh agarwal
- 43
- 2
- 8
-
1Those aren't variables, but names of columns returned by your queries. To change them add aliases to columns in query. – markalex Aug 21 '23 at 05:03
-
Aliases would be added to each columns na... I want to name these query to a whole different variable..So that i can select table easily... Can i Do that ?? – harsh agarwal Aug 21 '23 at 05:10
-
1AFAIK, no. Drop down with selection between queries always returns names of columns by comma (at least for SQL data sources). – markalex Aug 21 '23 at 05:59