常用sql整理

1. 表增加字段

alter table pet add des char(100) null;

2. 创建表

CREATE TABLE `cjj` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL DEFAULT '',
  `sex` tinyint(1) NOT NULL DEFAULT '1',
  `age` tinyint(3) NOT NULL DEFAULT '18',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

 

posted @ 2018-12-13 10:19  泥土里的绽放  阅读(117)  评论(0编辑  收藏  举报