What's the equivalent of the Access "WHERE table!field = '[User Input]';" in Oracle?
I want to be able to input a value for the query to work on.
Printable View
What's the equivalent of the Access "WHERE table!field = '[User Input]';" in Oracle?
I want to be able to input a value for the query to work on.
same thing
SELECT blah, blah2 FROM mytable WHERE blah2 = 'userinput'
What's wrong with this?
. . . . . . . . . . .Code:ACCEPT dte CHAR PROMPT "DATE ADDED:"