表的删除和更新

  1. 表的删除
    drop table 表名;
    这个删除是无法恢复的。
  2. 表的定义的更新
  • 添加列
    alter table 表名 add 列的定义;
    例如 alter table shohin add shohin_mei_kanna varchar(100);
  • 删除列
    alter table 表名 drop column 列名
  • 修改表名
    rename table 表名 to 新表名;
  1. 向表中插入数据。
    start transaction;
    insert into 表名 values(各种数据);
    insert into 表名 values(各种数据);
    insert into 表名 values(各种数据);
    insert into 表名 values(各种数据);
    commit;

你可能感兴趣的:(表的删除和更新)