码迷,mamicode.com
首页 >  
搜索关键字:t1    ( 4339个结果
MySQL多表连接删除问题
DELETE是一个蛮慎重的SQL操作,一般来说这样删除操作都需要谨慎小心,以免造成不必要的损失。 DELETE有下面这几种情况: Ø  delete from t1 where 条件 Ø  delete t1 from t1 where 条件 Ø  delete t1 from t1,t2 where 条件 Ø  delete t1,t2 from t...
分类:数据库   时间:2015-07-11 18:35:39    阅读次数:216
sql中Distinct的使用
作用:消除重复的数值一、如:1 select id from T12 3 select distinct id from T1二者的检索效果如下:distinct可以用来修饰多列,如:1 select distinct id,name from T1效果:发现检索的结果自动按照id列进行排序,再比如...
分类:数据库   时间:2015-07-11 15:03:00    阅读次数:266
深入理解Linux内核-内存寻址
1、逻辑地址怎么转换为线性地址的:逻辑地址 = 段选择符(16bit)+偏移量(32bit)段选择符又三部分组成:index(索引序号)、T1(表指示器)、RPL(request privilege level 请求者特权级)索引序号:指向GDT(global descriptor table 全局...
分类:系统相关   时间:2015-07-10 22:10:18    阅读次数:186
BJOI2015 Day1
本以为会是三道小强与阿米巴,结果打开题目一看发现了这个:T1:恩先写着一道#include#include#include#include#define rep(s,t) for(int i=s;i>1;ls[y]=ls[x];rs[y]=rs[x]; if(pos>1; if(k#i...
分类:其他好文   时间:2015-07-10 14:59:15    阅读次数:152
STL算法设计理念 - 二元函数,二元谓词以及在set中的应用
demo 二元函数对象 #include #include #include #include using namespace std; template class SumVector { public: T operator()(T t1, T t2) // 二元函数对象 { return t1 + t2; } protected: private: }; void...
分类:编程语言   时间:2015-07-09 22:45:12    阅读次数:194
Lightoj 1054 - Efficient Pseudo Code
题目连接: http://www.lightoj.com/volume_showproblem.php?problem=1054题目大意: 给出n,m,问n^m的所有因子之和是多少?解题思路: 补充知识: 1:对于一个数字n=p1^t1+p2^t2+p3^t3+.........+pn^tn...
分类:其他好文   时间:2015-07-08 00:20:44    阅读次数:253
2015.7.7 暑期计划C
ADNI 数据第一期处理计划:t1时间的结构像和t2时刻的结构像先对齐以产生一个mean图像,剩下的操作都是针对mean图像的。先从t1像到mean图像,这次的变换成为M1.再把mean图像投射到MNI空间。最后用csf,wm,GM.计算cbf.需要细看的代码:batch_scripts_PASLp...
分类:其他好文   时间:2015-07-07 19:14:26    阅读次数:123
programming-challenges Shoemaker's Problem (110405) 题解
Greedy.  证明: Let's say we have job 1, 2, ..., n, and they have time and fine as t1, f1, t2, f2, ..., tn, fn and they are in the order of t1/f1 So this is the objective schedule. Now w...
分类:其他好文   时间:2015-07-07 16:59:38    阅读次数:141
XDebug用法大全(一)
XDebug是一个开放源代码的PHP程序调试器(即一个Debug工具,可以用来跟踪,调试和分析PHP程序的运行状况。 一、堆栈化的错误调试 首先来看看Xdebug最基本的功能——堆栈化的错误调试,代码很简单,仅仅有一个名为t1的函数,函数中require了一个不存在的PHP文件 function t1() { require 'notexists.php'; } t1(); 执行结果如...
分类:其他好文   时间:2015-07-07 09:40:51    阅读次数:295
Mysql子查询,连接,多表更新
1.子查询是指在另一个查询语句中的SELECT子句。例句:SELECT * FROM t1 WHERE column1 = (SELECT column1 FROM t2);其中,SELECT * FROM t1 ...称为Outer Query[外查询](或者Outer Statement),SE...
分类:数据库   时间:2015-07-07 08:14:05    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!