Specifies a table scan of a stored table.
( t_scan stored_table )
is the name of the stored table to be scanned.
An abstract plan derived table produced by the scan of the stored table.
select * from t1
( t_scan t1 )
Performs a table scan of t1.
Instructs the optimizer to perform a table scan on the stored table.
Specifying t_scan forbids the use of reformatting and the OR strategy.