Reputation: 867
Can someone tell me what oracle syntax >= :1 means? Example
Select * from someTable s WHERE (TRUNC(s.ShippedOn)) >= :1
in this example ShippedOn
is a NUMBER(20,10)
thanks Niall
Upvotes: 1
Views: 62
Reputation: 4614
Your Select
statement is dynamic sql statement and (TRUNC(s.ShippedOn)) >= :1
is means (TRUNC(s.ShippedOn))
is greater than or equal to bind variable value which you will pass at run time.
More info in this page .
Upvotes: 1