码迷,mamicode.com
首页 >  
搜索关键字:result set    ( 66152个结果
Python基础练习--(3)
·数字个数 str=input() cnt=0; for i in range(len(str)): if(str[i].isdigit()): cnt+=1 print(cnt) Caesar Secret str=input("请输入一个字符串:") caesar="" n=input("请输入 ...
分类:编程语言   时间:2021-06-02 16:37:16    阅读次数:0
自定义进度条Android,kotlin
1:效果 一运行起来,红色是下载的部分,蓝色是为下载部分,下载完之后先缩成一个椭圆,在缩成一个圆 GitHub地址:https://github.com/luofangli/MyDrawProgress 详细代码: <?xml version="1.0" encoding="utf-8"?><and ...
分类:移动开发   时间:2021-06-02 16:08:01    阅读次数:0
aws - Default VPC and default subnets
Default VPC components When we create a default VPC, we do the following to set it up for you: Create a VPC with a size /16 IPv4 CIDR block (172.31.0. ...
分类:Web程序   时间:2021-06-02 15:47:16    阅读次数:0
Architecture Reference-Read&Write set semantics
https://hyperledger-fabric.readthedocs.io/en/latest/readwrite.html Read-Write set semantics This document discusses the details of the current impleme ...
分类:其他好文   时间:2021-06-02 15:28:52    阅读次数:0
2、linux Hadoop集群环境配置ssh无密码验证
集群网络配置 分别设置修改主机名 master slave1 slave2 hostnamectl set-hostname 名字 分别配置/etc/hosts文件 查看openssh和rsync安装 rpm -qa | grep 名字 切换到Hadoop用户 各节点生成秘钥 ssh-keygen ...
分类:系统相关   时间:2021-06-02 15:27:52    阅读次数:0
触发器
触发器 触发器(trigger)是SQL server 提供给程序员和数据分析员来保证数据完整性的一种方法,它是与表事件相关的特殊的存储过程,它的执行不是由程序调用,也不是手工启动,而是由事件来触发,比如当对一个表进行操作( insert,delete, update)时就会激活它执行。触发器经常用 ...
分类:其他好文   时间:2021-06-02 15:23:01    阅读次数:0
5.8 进阶8:分页查询
5.8 进阶8:分页查询 5.8.1 应用场景和语法 当要显示的数据,一页显示不全,需要分页提交sql请求 语法 select 查询列表 from 表 【join type join 表2 on 连接条件 where 筛选条件 group by 分组字段 having 条件 order by 排序的 ...
分类:其他好文   时间:2021-06-02 15:21:28    阅读次数:0
docker - install
https://docs.docker.com/engine/install/ubuntu/ Set up the repository apt-get update apt-get install \ apt-transport-https \ ca-certificates \ curl \ g ...
分类:其他好文   时间:2021-06-02 15:16:09    阅读次数:0
R语言数据可视化分析案例:探索BRFSS数据
原文链接:http://tecdat.cn/?p=9284加载包 library(tidyr) library(knitr) opts_chunk$set(echo = TRUE, fig.align = "center")载入资料load("brfss2013.RData")第1部分:数据描述如何 ...
分类:编程语言   时间:2021-06-02 15:01:07    阅读次数:0
Linux epoll 单线程
#include <sys/socket.h> #include <sys/wait.h> #include <netinet/in.h> #include <netinet/tcp.h> #include <sys/epoll.h> #include <sys/sendfile.h> #inclu ...
分类:编程语言   时间:2021-06-02 14:40:56    阅读次数:0
66152条   上一页 1 ... 22 23 24 25 26 ... 6616 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!