- 博客(27)
- 收藏
- 关注
原创 Deepin依赖错误,检测更新失败
Deepin依赖错误,检测更新失败胡高团关注0.2052020.04.03 10:22:07字数 96阅读 3,456一次在检查更新时,弹出了这样的错误image通过尝试安装其他应用,发现都会弹出相同的错误Depends: libappindicator1 but it is not installed这时运行sudo apt-get -f install可以根据错误消息的建议,安装任何需要的依赖项并解决这个问题。-f 代表--fix-broken而不是"强制",不会...
2021-09-05 19:18:04
2525
原创 xampp-linux-x64-7.4.14-0-installer.run
https://sourceforge.net/projects/xampp/files/XAMPP%20Linux/7.4.14/xampp-linux-x64-7.4.14-0-installer.run
2021-01-24 21:30:55
339
原创 在Linux系统下安装了VMware后打开提示GCC没有找到的解决方法 [GNU C Compiler (gcc) version 7.3.0 was not found.]
VMware Kernel Module UpdaterBefore you can run VMware, several modules must be compiled and loaded into the running kernel.GCCGNU C Compiler (gcc) version 7.3.0 was not found. If you installed it in a non-default path you can specify the path below..
2021-01-17 09:01:45
3358
原创 Mysql 8.0修改密码
Mysql 8.0修改密码1、mysql -u root -p '原来的密码' //进入数据库中2、show databases;3、use mysql;4、使用下面的语句修改密码: ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '你的密码'; ALTER USER 'root'@'localhost' IDENTIFIED W...
2021-01-17 08:40:41
173
原创 i3-7100+微星B250M MORTAR安装黑苹果成功,efi文件分享。太折腾了,不分享不痛快(安装了macOS Big Sur 11.0.1 正式版(20B29))
奔腾G4560+微星B250M MORTAR+GTX960安装黑苹果成功,efi文件分享。太折腾了,不分享不痛快发邮件过来 gmp2208@126.com
2020-12-19 16:19:26
6069
1
原创 CSS的关联选择器
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> div p{ background-color: #0000FF; } p{ ba...
2020-02-03 09:16:25
288
原创 css的id和class选择器区别
1.使用范围不同: CLASS属性允许向一组在CLASS属性上具有相同值的元素应用声明。BODY内的所有元素都有CLASS属性。ID属性的操作类似于CLASS属性,ID属性的值在整篇文档中必须是唯一的。2.表示方法不同: CLASS类选择器以标志符(句点)开头,用于指示后面是哪种类型的选择器。对于类选择器,之所以选择句点是因为在很多…3.用途不同: 可以使用CLASS属性来分类元素。ID属性用...
2020-02-03 08:59:59
281
原创 css的ID选择器
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #gg{ background-color: coral; } /* div#gg{...
2020-02-03 08:58:36
121
原创 eclipse导包快捷键
eclipse导包快捷键“把光标移动到有红色波浪线的TreeSet上,然后按下Ctrl+Shift+M / CTRL+SHIFT+O ,Eclipse会自动帮你完成导入的工作了 导入当前一个的包:Ctrl+Shift+M 导所有的,还删除掉未用的包(推荐):CTRL+SHIFT+O”...
2020-02-01 21:41:48
3092
原创 mysql时间和日期类型datetime
datetime– 创建时间日期表create table my_time(d1 datetime,d2 date,d3 time,d4 timestamp,d5 year)charset utf8;插入数据insert into my_time values(‘2015-09-08 11:50:36’,‘2016-11-11’,‘11:50:50’,‘2015-09-08 ...
2020-02-01 17:30:37
247
原创 小数型数据double
doublefloatcreate table my_float (f1 float,f2 float(10,2),f3 float(6,2)) charset utf8;insert into my_float values(1000.10,1023.1,1011.10);insert into my_float values (9999999999,99999999.99,99...
2020-02-01 17:10:32
223
原创 整数型
– 创建整形表格create table my_int1(int_1 tinyint,int_2 smallint,int_3 int,int_4 bigint)charset utf8;插入数据insert into my_int1 values(100,100,100,100);insert into my_int1 values(99,88,77,66);alter t...
2020-02-01 12:02:41
615
原创 更新数据update
1、update 表名 set 字段 =值[where 条件];– 建议都有where :要不然就会更新全部2、例子:update student set name=‘刘德华’ where name=固定’;
2020-01-31 23:20:45
712
原创 查看数据表数据
select*/字段列表 from 表名[where 条件];1、select *from student ;2、select * from student where id=1;3、select *from student where age=26;
2020-01-31 23:12:45
229
原创 数据表新增数据
数据表新增数据1、插入数据insert into student values (1,‘说法’,22,‘时代大厦’,‘撒地方’,‘撒打发’);insert into student values (2,‘sfa’,24,‘时代大厦’,‘撒地方’,‘撒打发’);2、插入数据-指定字段insert into student (name,age,number) values(‘张三丰’,...
2020-01-31 23:01:56
204
原创 删除mysql数据表字段
删除学生表中的字段sex111alter table student drop sex111;增加回来alter table student add column BBB varchar(12) ;
2020-01-31 22:21:58
657
原创 mysql删除表字段
1、修改学生表中的gender字段为sex111alter table student change gender sex111 varchar(11);
2020-01-31 22:11:55
773
原创 修改mysql列字段属性
alter table my_student modify number varchar(15) after id;-- 将学生表中的number学号字段变成固定长度,且放到第二位 (id之后);
2020-01-31 22:08:16
128
原创 修改mysql列字段
alter table 表名 add[column]字段名 数据类型[列属性][位置];1、alter table studentadd column id intfirst;2、alter table student add column sexxxx varchar(20)after age;...
2020-01-31 21:46:31
213
原创 mysql数据库
create database;charset utf8;字符集create database mydatabase1 charset utf8;show databases;show databases like 'pattern'; -- pattern 是匹配模式删除数据库drop database 数据库名字_______________________...
2020-01-31 18:34:42
98
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人