建立表新增注釋
create
table purchase(
id int(25) primary
key auto_increment,
user_id int(50) comment'列注釋',
created_on datetime default
null
)engine=innodb default charset=utf8 comment='表注釋';
檢視表注釋:
select tablename,tablecomment
from information_schema.tables
where table_schema = '所在db'
and table_name = '表名稱';
或者:show
create
table purchase;
修改注釋
alter
table purchase comment '新的表注釋';
alter
table purchase modify column user_id varchar(25) comment '新的列注釋';
檢視列注釋
show
full columns from purchase;
也可安條件查詢
show
full columns from purchase
where field = 'user_id'
or type like
'%int%'
-- 檢視purchase表中列名是user_id的或型別是int的列
MySQL使用變數新增行號 分組新增行號
drop table ifexists computer stu create table computer stu id int 11 notnull name varchar 20 default null score float default null primary key id engi...
二維陣列建立以及新增行列索引的方法
列表 a pd.dataframe np.arange 10 reshape 2,5 index list ab columns list qwxyz print a 字典 temp dict a pd.dataframe temp dict print a a for i in range 3 f...
mysql增加行 MySQL新增新行
1 利用insert語句新增新行 一次性指定全部列值,其語法如下 向student表裡插入一行記錄 在使用此方法時,values列表必須包含表中每一列的值,並且值得順序要與各列在表裡的儲存順序一致 通常情況下,該順序是create table語句指定的順序 如果不確定列的順序可以用describe ...