---------------------------------------------------------------------创建测试数据库表-------------------------------------------------------------------CREATE...
分类:
其他好文 时间:
2014-07-09 18:51:03
阅读次数:
269
1.myisam,bdb,innodb,memory 单表至少支持16个索引2.create index id_index on emp (id) 为emp表创建一个名为id_index的id字段的索引3.drop index id_index on emp 删除emp表的id_index 索引4....
分类:
数据库 时间:
2014-07-08 22:42:14
阅读次数:
306
原文:分享一个SQLSERVER脚本分享一个SQLSERVER脚本很多时候我们都需要计算数据库中各个表的数据量很每行记录所占用空间这里共享一个脚本CREATE TABLE #tablespaceinfo ( nameinfo VARCHAR(50) , rowsinfo BIGINT , reser...
分类:
数据库 时间:
2014-07-08 21:55:37
阅读次数:
332
代码注释比较详细:
#include
#include
using namespace std;
struct Node{
int data;
Node* next;
};
Node* head = NULL;
bool create() {
head = (Node*)malloc(sizeof(Node));
if(NULL == head) return false;...
分类:
其他好文 时间:
2014-07-08 21:05:05
阅读次数:
238
使用不同版本的XCode出现的问题:
fatal error: malformed or corrupted AST file: 'Unable to load module "/Users/xxx/Library/Developer/Xcode/DerivedData/ModuleCache/XYZYIE6ZV0OP/Darwin.pcm":
file not found' note: a...
分类:
其他好文 时间:
2014-07-08 15:36:55
阅读次数:
168
1.在html里面添加 list.htmllist.html(function ($, K) { if (!K) throw "KindEditor未定义!"; function create(target) { var opts = $.data(target, 'kindeditor')....
分类:
Web程序 时间:
2014-07-08 12:38:29
阅读次数:
244
1.create or replace view emp_view as select * from t4 ;给t4表创建一个名为emp_view的视图2.drop view emp_view 删除视图=======================================1.创建一个存储过程...
分类:
数据库 时间:
2014-07-08 11:38:51
阅读次数:
254
在android的官网上买下载android的adt完了,进行解压之后,开始点击eclipse.exe,果然给了我一个惊喜,那就是[ Failed to create the Java Virtual Machine. ],看到这个消息之后进行了网上的查询,发现错误的根源是eclipse.ini这个...
分类:
移动开发 时间:
2014-07-08 11:37:39
阅读次数:
354
CREATE OR REPLACE FUNCTION bdlly.fn_Reg_ywdjh(fn_rq date) RETURN varchar2 IS v_char varchar2(200); v_max varchar2(100); BEGIN --查询出最...
分类:
其他好文 时间:
2014-07-08 10:25:52
阅读次数:
223
Differences Between Xcode Project Templates for iOS AppsWhen you create a new iOS app project in Xcode, you get to choose between several project temp...
分类:
移动开发 时间:
2014-07-08 10:17:14
阅读次数:
367