1. 程式人生 > >mysql對資料的基本操作

mysql對資料的基本操作

1.修改資料     語法:update 表名 set 欄位名=值 ,欄位2=值;   1.1修改指定條件的資料     update 表名 set 欄位名=值 where 條件; 2.mysql表示式     大於 >  小於<  大於等於>= 小於等於<= 不等於!= <>  等於==     或or  與 and 非! between 在,,,之間   3.刪除操作      delete 或 truncate 刪除資料   3.1刪除指定資料     delete from 表名 where 條件;   刪除表     delete from 表名;      再次新增資料時 id接著刪除之前開始     truncate 表名;      再次新增資料時 id從1開始;