码迷,mamicode.com
首页 >  
搜索关键字:group by case when    ( 29534个结果
Centos 安装Python3
一、检查是否有 GCC gcc --version # 查看gcc版本 # 若没有输出,执行安装命令 yum -y install gcc 二、安装依赖 sudo yum -y groupinstall "Development tools" sudo yum -y install zlib-dev ...
分类:编程语言   时间:2020-11-01 09:38:18    阅读次数:20
manpages: system-config-users
system-config-users(8) System Config Tools Manual system-config-users(8) NAME system-config-users - User and Group Management tool SYNOPSIS system-con ...
分类:其他好文   时间:2020-10-31 02:00:00    阅读次数:15
get Toutiao.com news list
.get cookie with your browser then can do WebClient wc = new WebClient(); wc.Headers.Add("referer", "https://www.toutiao.com/"); wc.Headers.Add("cooki ...
分类:其他好文   时间:2020-10-31 01:08:29    阅读次数:23
ndis网卡驱动收发包
尝试描述ndis网卡驱动的收发包过程 设置一个_NDIS_MINIPORT_DRIVER_CHARACTERISTICS结构,包含初始化,处理中断,发包等很多自己写的handle,初作为参数提供给MRegisterMiniportDriver函数 MRegisterMiniportDriver会首先 ...
分类:其他好文   时间:2020-10-30 12:40:37    阅读次数:25
MT7621调试FOTA升级中的问题
1. 没有上报101,直接上报了201,看下LOG,其中的上报下载进度成功 case OTA_EVENT_REPORT_DOWNLOAD_PROGRESS_OK: { ota_log_printf("Report download progress success\r\n"); if(ctx->do ...
分类:其他好文   时间:2020-10-30 12:35:50    阅读次数:23
conky配置(附配置项作用解释)
alignment top_right #是否嵌入桌面 background yes #是否绘制窗口边框 draw_borders no #窗口边框 border_width 10 #cpu_avg_samples 2 #默认颜色 #default_color cornflowerblue #默认字 ...
分类:其他好文   时间:2020-10-29 10:29:31    阅读次数:29
Python字符串string常用方法和函数
str=‘helloworld‘join合并,以join前的string为分隔符,将列表中的元素合并为一个新的字符串str_1=‘*‘.join([‘Are‘,‘you‘,‘ok‘])print(str_1)#结果Are*you*ok分隔,split将string根据分隔符分隔成列表,也可以带参数num(分隔次数)splitlines,按照行(‘\r‘,‘\
分类:编程语言   时间:2020-10-29 10:01:01    阅读次数:21
Mysql查看数据库表容量大小
1)查看各数据库记录数,容量大小 SELECT table_schema AS '数据库', sum(table_rows) AS '记录数', sum( TRUNCATE (data_length / 1024 / 1024, 2) ) AS '数据容量(MB)', sum( TRUNCATE ( ...
分类:数据库   时间:2020-10-29 09:45:44    阅读次数:27
Python中常用的os操作
Python自动的os库是和操作系统交互的库,常用的操作包括文件/目录操作,路径操作,环境变量操作和执行系统命令等。 文件/目录操作 获取当前目录(pwd): os.getcwd() 切换目录(cd): os.chdir('/usr/local/') 列出目录所有文件(ls):os.listdir( ...
分类:编程语言   时间:2020-10-27 11:33:55    阅读次数:30
MySQL进阶之SQL优化
1、索引的分类 普通索引(单列索引):一个索引只包含单个列,一个表可以有多个; create index idx_brand_name on brand(name); alter table brand add index idx_brand_name(name); show index from ...
分类:数据库   时间:2020-10-27 11:13:40    阅读次数:23
29534条   上一页 1 ... 50 51 52 53 54 ... 2954 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!