2020年8月28日

SQL---表内容查询

摘要: 1、查询表的字段及字段类型 select column_name columnName, column_type columnType from information_schema.columns where table_name = '表名' and column_name = '字段名' 2、 阅读全文

posted @ 2020-08-28 15:53 anpeiyong 阅读(374) 评论(0) 推荐(0) 编辑

SQL---修改表

摘要: 1、修改字段类型长度 ALTER TABLE test_demo MODIFY COLUMN name varchar(12) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL; 阅读全文

posted @ 2020-08-28 10:20 anpeiyong 阅读(241) 评论(0) 推荐(0) 编辑

导航