暑期自學 Day 10 | 資料庫 (二)- DML

Borris發表於2020-05-22

DML - 增刪改表中資料

  • 新增資料

    • insert into t_name(col1, col2, ..., colN) values(type1, type2, ... typeN);
  • 刪除資料

    • delete from t_name where [condition];
    • truncate table t_name 刪除表的所有資料,建立一個一模一樣的空表
  • 修改資料

    • update table t_table set name = '', id = 0 where [condition];

如果刪除,修改不加 where 條件,所有列都會受影響

本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章