MySQL中的DML(數據操做語句)

一、對錶中數據的添加、修改、刪除; 二、添加數據:insert into 表名(列名1,列名2,···) values(值1,值2,···); 3、修改數據:update 表名 set 列名1=列值1,列名2=列值2,···[where 條件]; 4、刪除數據:delect from 表名 [where 條件]; 5、關鍵字彙總:添加:insert into; 修改:update set; 刪除:
相關文章
相關標籤/搜索