Final answer:
SQL views are updatable when based on a single table with no computed columns and all non-null columns are present in the view.
Step-by-step explanation:
SQL views are updatable in certain conditions. The answer is option 1) When the view is based on a single table with no computed columns, and all non-null columns are present in the view. In this case, any changes made to the view can be reflected in the underlying table.