Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ltollesonThere is not really a user prompt in BRE, but you can create a parameter that allows a user to change a value without changing the code. You can create a parameter on the actual DB Query node, on a Composite node that contains the DB Query node, or at the Graph level through the "Graph / Edit Parameters... " menu. Once you have the parameter created you would write your SELECT statement like the example below.
select thename from mytable where customer = '{{^Customer^}}'
NOTE - You cannot use a ";" character at the end of the statement. It will return an error. The parser does not accept or need an ending character since this node can only handle one SELECT statement.
Hope this helps...