PDA

Click to See Complete Forum and Search --> : Oracle


gravyboy
Nov 17th, 2000, 07:46 AM
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.

kovan
Nov 17th, 2000, 09:29 AM
same thing
SELECT blah, blah2 FROM mytable WHERE blah2 = 'userinput'

gravyboy
Nov 17th, 2000, 09:54 AM
What's wrong with this?


ACCEPT dte CHAR PROMPT "DATE ADDED:"


. . . . . . . . . . .