To change names in an SQL view, it's important to clarify whether the goal is to change the view's name or the column names within the view. For altering the view's structure, the 'ALTER VIEW' command is used, allowing modifications to the selected columns and their definitions. An example provided illustrates how to use 'ALTER VIEW' to change a field name within a view. If a more significant change is needed, deleting the existing view and recreating it with the desired changes is also a viable option. The discussion emphasizes the need for clarity on the specific changes required and provides resources for further guidance.