创建视图的SQL语句格式如下:
CREATE VIEW view_name AS
SELECT column1, column2, ...
FROM table_name
WHERE condition;
其中,view_name
为视图的名称,column1, column2, ...
为视图中包含的列名,table_name
为视图所基于的表名,condition
为筛选条件。
例如,创建一个名为customer_view
的视图,包含customer_id
和customer_name
两列,基于customer
表,并筛选customer_type
为'VIP'的记录,可以使用以下SQL语句:
CREATE VIEW customer_view AS
SELECT customer_id, customer_name
FROM customer
WHERE customer_type = 'VIP';
删除视图的SQL语句格式如下:
DROP VIEW view_name;
其中,view_name
为要删除的视图的名称。
例如,删除名为customer_view
的视图,可以使用以下SQL语句:
DROP VIEW customer_view;