Using the DB Read feature, I am listing the fields to gather from that setting, but is there by any chance a way to load a field with a different name? Example of what I mean in MySQL query form:
select id, item as 'MyItem' from 'table'
I have selected "id" and "item" from my table, but I want "item" to return as "MyItem." I hope I'm making sense here.
select id, item as 'MyItem' from 'table'
I have selected "id" and "item" from my table, but I want "item" to return as "MyItem." I hope I'm making sense here.