mysql基本操作(五)-視圖,用戶管理和索引

student表 1 創建視圖:create view 視圖名 as (select 字段名列表 from 表名); 2 插入數據:insert into 視圖名 values(插入數據); 3 修改數據:update 視圖名 set 待更改是數據 where 條件; 4 刪除數據:delete from stu where 條件; 5 修改視圖:alter view 視圖名 as (select
相關文章
相關標籤/搜索