Table : Relational Database is composed of tables that contain related data.
View :
1. Views are created from one or more than one table by joins with selected columns.
2. Views acts as a layer between user and table.
3. Views are created to hide some columns from the user for security reasons and to hide information exist in the column.
4. Views reduces the effort for writing queries to access specific columns every time.
5. Reports can be created on views.
6. View doesn't contain any data.