1.测试数据准备 参考:Sql Server中的表访问方式Table Scan, Index Scan, Index Seek 这篇博客中的实验数据准备。这两篇博客使用了相同的实验数据。 2.SQL Server中的三种Join方式 在Sql Server中,每一个join命令,在内部执行时,都会采 ...
分类:
数据库 时间:
2018-05-14 15:44:42
阅读次数:
176
As a cute girl, Kotori likes playing ``Hide and Seek'' with cats particularly. Under the influence of Kotori, many girls and cats are playing ``Hide a ...
分类:
其他好文 时间:
2018-05-13 21:09:01
阅读次数:
151
import xml.etree.ElementTree as ET tree = ET.parse("xml test") #open root = tree.getroot() #f.seek(0) #print(dir(root)) print(root) # # #遍历xml文档 for c... ...
分类:
其他好文 时间:
2018-05-12 19:20:16
阅读次数:
171
流程控制 一、条件语句 1、if 2、if...elif...else 3、if...else 二、循环语句 1、for...in 2、for...in...else 3、while 4、while...else 文件操作 一、打开和关闭文件 方式一:obj = open(file_name, mo ...
分类:
编程语言 时间:
2018-05-09 14:50:05
阅读次数:
164
RandomAccessFile 用来支持读写随机存取文件的类。提供“文件指针”,类似于游标和下标,使用getFilePointer()方法获得,利用seek()方法设置下标。 public RandomAccessFile(String name, String mode){} mode:文件操作 ...
分类:
数据库 时间:
2018-05-06 17:04:03
阅读次数:
181
# 1.locals()和globals()def func(): x = 1 y = 2 print(locals()) # 查看局部变量 # {'y': 2, 'x': 1} print(globals()) # 查看当前程序所有全局变量 '''{'__name__': '__main__', ... ...
分类:
编程语言 时间:
2018-05-05 14:46:41
阅读次数:
211
前提:SD卡已经分区,通过读卡器或者TF卡套挂在到ubuntu系统 1 使用df h 命令查看sd卡分区信息和挂载信息 例如: /dev/sdb1 挂载点为/media/label1 /dev/sdb2 挂载点为/mdeia/label2 2 卸载SD卡 umount /media/label1 u ...
分类:
其他好文 时间:
2018-05-03 12:51:14
阅读次数:
255
python中的输入输出函数,文件的读写、追加、指针、删除和重命名已经文件操作的常用函数的笔记记录 ...
分类:
编程语言 时间:
2018-04-30 10:21:20
阅读次数:
280
#include<stdio.h>#include<stdlib.h>#include<time.h>#include<string.h>#include<conio.h>#define N 100 int n=0; int Checktoseek(char name[]);//查找void mai ...
分类:
其他好文 时间:
2018-04-28 22:11:43
阅读次数:
192
安装KVM 1、确认硬件是否支持 2、安装kvm及相关工具 3、加载模块 4、创建第一个虚拟机 1) 创建稀梳格式磁盘# dd if=/dev/zero of=/root/centos6.img bs=1M oflag=direct seek=4095 count=1 2) 创建一个虚拟机,使用光盘 ...
分类:
其他好文 时间:
2018-04-27 23:02:27
阅读次数:
210