How can I select table names that do contain slashes in the inline SQL performance analysis (aka "Explain SQL") of transaction ST05
?
I tried escaping them with '/table/name'
or "/table/name"
or "\/table\/name"
. None of them worked.
Works for tables without slashes:
SELECT * FROM table_name
but not for tables with slashes (e.g. from a namespace):
SELECT * FROM /table/name.