Is there syntax which allows a parameter marker in the middle of a table name? For example, consider the queries
sel * from t?x
and
sel * from t?x_blah.
Both execute as
sel * from t1
if the user inputs 1. In the first query x = 1
and in the second query x_blah = 1
. I would like to modify the second query to set x = 1
and execute as
sel * from t1_blah.
Is there a way to do this?
Thanks!