Table scan doesn’t look to be efficient?
Table scan operators are good if the numbers of records in the tables are less. If the numbers of records in the tables are more, then table scan is very inefficient as it needs to scan row by row to get to the record. So for big number of rows in a table rather than table scan operator, seek scan operator is preferred.