How is the value for #sq(prompt(''))# filled/created?
If it's just plugged in the SQL string by the client, the simply use "(5056,1351)" or "(5001)".
If it's supposed to be a parameter for a Prepared SQL it's much mor complicated, i'd suggest using some Dynamic SQL in a SP.
How is the value for #sq(prompt(''))# filled/created?
If it's just plugged in the SQL string by the client, the simply use "(5056,1351)" or "(5001)".
If it's supposed to be a parameter for a Prepared SQL it's much mor complicated, i'd suggest using some Dynamic SQL in a SP.
But in both cases be aware of SQL Injection.
Dieter