mysql之DML語言

mysql之DML語言 數據操作語言 插入:insert into 表名(列名1,…)values (值1,…); 修改:update 表名 set 列=值 刪除:delete from 表名 where 篩選條件 truncate table 表名;不能加條件,整張表刪除 1.插入語句 方式一:經典插入 表已經存在了,往裏面添加數據 語法: insert into 表名(列名1,…) value
相關文章
相關標籤/搜索