Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. # 增加一个字段
  2. ALTER TABLE people ADD COLUMN name VARCHAR(100) DEFAULT NULL COMMENT '姓名'
  3.  
  4. # 增加多个字段
  5. alter table test add (c1 char(1),c2 char(1)); --正确,add支持多列
  6. alter table test add column (c1 char(1),c2 char(1)); --正确
  7. alter table test add c1 char(1),add c2 char(1); --正确
  8.  
  9. --修改多列
  10. alter table test change c1 c3 char(1),change c2 c4 char(1); --正确
  11. alter table test change column c1 c3 char(1),change column c2 c4 char(1); --正确
  12. --name关键字作为字段名,重命名需要加反引号(`)
  13. alter table table_name change `name` field_name varchar(50);
  14.  
  15. alter table test change (c1 c3 char(1),c2 c4 char(1)); --错误
  16.  
  17. --删除多列
  18. alter table test drop c1,drop c2; --正确
  19. alter table test drop column c1,drop column c2; --正确
  20.  
  21. alter table test drop c1,c2; --错误
  22. alter table test drop (c1,c2); --错误
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement