I am trying to understand what does this line of Oracle script is doing in order for me to translate into SQL Server.
table(cast(multiset(select trunc(sysdate)-level
from dual
connect by level <= 100) as sys.odcidatelist))
Can someone help me translate this script into SQL Server, and also explain what is this script doing?