摘要:
前戏 --创建表 create table xxx( id int unsigned not null auto_increment primary key, name varchar(20) not null ); 1.增 --全字段插入 insert into xxx values(0,"王老五 阅读全文
摘要:
以下以student表为例 --查看表结构 desc student; --添加字段 alter table student add (字段名)age (数据类型)int unsigned (约束)not null default 0; alter table student add birthda 阅读全文
摘要:
1.备份原文件 1 sudo cp /etc/apt/sources.list /etc/apt/sources_list.bak 2.加载文件 vim:vim sourses.list ubuntu desktop :sudo gedit /etc/apt/sources.list 3.更改原文件 阅读全文