Hi, I understood about different usage of bind variables betw. TAOD and PL/SQL Developer (e.g. : and & ). But there must be other differences as well, because just replacing : with & does not help, I still get error messages. So, how should be rewritten the TOAD code into PL/SQL?:
SQL:
VAR datum VARCHAR2(30)
EXEC :datum := '30-06-2015'
SELECT * FROM TABLE WHERE DATE = TO_DATE (:datum, 'DD.MM.YYYY')