Hi,
I am having issues with simple SQL Statement where we have spaces in the names.
For Example “tabPayment Entry”, “tabStock Entry”.
I am currently running my script in terminal.
Any help who encounterd this.
Thanks
Hi,
I am having issues with simple SQL Statement where we have spaces in the names.
For Example “tabPayment Entry”, “tabStock Entry”.
I am currently running my script in terminal.
Any help who encounterd this.
Thanks
Hi @mahima98,
When you want to query a table who contain spaces, you need to use backtick ` (not the same thing as: ’ )
so your query would look like this:
`tabPayment Entry`
or
`tabPayment Entry`.name
Hope this helps!
Thanks so much