1、分区技术2、索引技术3、临时表技术--创建事务级临时表,commit之后数据将丢失但是表结构依然存在CREATE
GLOBAL TEMPORARY TABLE admin_work_area (startdate DATE, enddate DATE, class
CHAR(20)) ON CO...
分类:
数据库 时间:
2014-05-07 17:08:24
阅读次数:
414
主键 (Primary Key)
中的每一笔资料都是表格中的唯一值。换言之,它是用来独一无二地确认一个表格中的每一行资料。主键可以是原本资料内的一个栏位,或是一个人造栏位
(与原本资料没有关系的栏位)。主键可以包含一或多个栏位。当主键包含多个栏位时,称为组合键 (Composite Key)。主键可...
分类:
其他好文 时间:
2014-05-07 14:08:41
阅读次数:
292
Problem B: Fire!Joe works in a maze. Unfortunately,
portions of the maze have caught on fire, and the owner of the maze neglected to
create a fire esc...
分类:
其他好文 时间:
2014-05-07 13:28:07
阅读次数:
312
用Tiled新建 好地图后放到cocos2d上使用,
// 加载Tiled地图
CCTMXTiledMap *map = CCTMXTiledMap::create("birdMap.tmx");
this->addChild(map);
然后报如下错误
Assert failed: TMX: Only 1 tiles...
分类:
其他好文 时间:
2014-05-07 12:31:48
阅读次数:
294
6.7备注
有时有个像Pasca中“记录”和C中“数据体”的数据类型非常有用。集合一些数据项。一个空类定义可以清楚地显示:
class Employee:
pass
john = Employee() # Create an empty employee record
# Fill the fields of the record
john.name = ’John Doe’
joh...
分类:
编程语言 时间:
2014-05-07 11:25:11
阅读次数:
311
#xml
api:http://www.cnblogs.com/lhj588/archive/2011/11/09/2242483.html#dictionary
operations: key in dict....from xml.dom import minidom, Nodedoc = mi...
分类:
编程语言 时间:
2014-05-07 11:01:12
阅读次数:
602
配置rndc.conf 命令:rndc-confgen >
/etc/bind/rndc.conf自动生成rndc.conf,内容如下:# Start of rndc.conf key "rndc-key" {
algorithm hmac-md5; secret "oYV+NSAXam...
分类:
其他好文 时间:
2014-05-07 01:45:13
阅读次数:
249
1,克隆表(创建一个恰好与某个已有表结构一致的表) create table …
like克隆表结构;使用insert into … select语句克隆部分或者全部表数据 2,将查询结果保存到表中 a,使用insert
into...select将语句查询结果插入表中,若表不存在需要使用creat...
分类:
数据库 时间:
2014-05-07 00:09:54
阅读次数:
503
存储过程
一、基本语法
createproceduresp_name([proc_parameter[,...]])
[characteristic...]routine_body
begin
end
sp_name表示存储过程的名字
proc_parameter存储过程参数例表[INOUTINOUT]三个部分组成
其中IN表示传进来的参数
其中OUT表示传出去的参数
其中INOUT表示传进..
分类:
数据库 时间:
2014-05-06 20:26:10
阅读次数:
404
(1)、数据插入insert
语法:insertinto表名(字段名称1,字段名称2,n,)values(‘值1‘,‘值2‘,‘值3‘)
举例说明:
createtablegonda(
user_idint,
user_namevarchar(15),
oldint,
addressvarchar(50));
标准数据插入:
insertintogonda(user_id,user_name,old,address)
values(‘11..
分类:
数据库 时间:
2014-05-06 20:20:43
阅读次数:
362