I'm new to Oracle / PL/SQL Developer and was wondering the best practise to declare variables.
In TSQL, I'm use to doing the following below and was wondering what the equivalent in oracle is.
DECLARE @WeekNumber Date
SET @WeekNumber '2020-10-01'
SELECT @Date .....
Cheers, I appreciate this is quite basic.