码迷,mamicode.com
首页 >  
搜索关键字:union    ( 2933个结果
不同系统间传输float型数据
#include #include int main(void) { union result { float d; unsigned char data[4]; }r1,r2; // 特别需要注意的是在单片机中int float double 类型的字长和PC机中是不一样的,需要注意 ...
分类:其他好文   时间:2015-04-03 13:27:16    阅读次数:156
mysql union order by 分别排序问题
两种方式: 第一种: 先各自排序,然后通过临时表嵌套再合并结果,注意排序后面必须加入 limit,否则order by不起作用 SELECT * FROM (SELECT * FROM t1 WHERE id IN (1,3,6) ORDER BY utime DESC limit 5) AS a?...
分类:数据库   时间:2015-04-03 01:40:18    阅读次数:182
用SQL语句获得一个存储过程返回的表
定义一个存储过程如下:create proc [dbo].[test1]@id intasselect 1 as id,'abc' as name union all select @id as id,'zzz' as name返回两行数据.现在想用SQL语句来调用这个存储过程,并把他返回的表放入变...
分类:数据库   时间:2015-04-02 13:05:09    阅读次数:156
mysql分表+查询
垂直分表: 其实没啥好讲,就是 主键+常用列 放在原表中,再讲 主键+一些不常用列 放在另外的表中。 这样一个数据页就可以存放更多数据。 但是缺点也明显,可能会增加join 或 union之类的操作。水平分表: 今天面试被问到水平分表,突然愣住了,分都知道,但分完如何有效查询就不好说了。 原...
分类:数据库   时间:2015-04-02 01:15:39    阅读次数:373
union 类型数据存储及计算
今天在做一个C语言题目的时候,碰上了这样一题:#include using namespace std; union { int i; char x[2]; }a;int main() { a.x[0] = 10; a.x[1] = 1; cout<<a.i; system("pause");...
分类:其他好文   时间:2015-03-31 22:19:51    阅读次数:182
oracle 运行脚本:character set mismatch
(select bg.sysyear, bg.orgontid, bg.orgname, bg.accvouchercode, bg.accvouchername, ‘‘ as accvoucherprop from gzyt_middle.beginningbalance bg where bg.ledger = ‘02‘ and bg.sysyear = ‘2015‘) union ...
分类:数据库   时间:2015-03-31 13:06:52    阅读次数:429
SQL递归查询(with cte as)
with cte as( select Id,Pid,DeptName,0 as lvl from Department where Id = 2 union all select d.Id,d.Pid,d.DeptName,lvl+1 from cte c inner jo...
分类:数据库   时间:2015-03-31 12:13:02    阅读次数:184
sql查询
SELECT * from aa WHERE aa not in(2,3) and aa not in(SELECT aa from aa where bb =1 and cc is null);(SELECT * from aa where bb not in (1,2,3)) UNION all...
分类:数据库   时间:2015-03-30 13:07:45    阅读次数:115
stl源码剖析 详细学习笔记 算法(2)
//---------------------------15/03/29----------------------------          //****************************set相关算法*****************************     /*         1>set相关算法一共有4种:并集(union),交集(inte...
分类:编程语言   时间:2015-03-30 09:36:07    阅读次数:153
WAF绕过小结
WAF介绍什么是WAF?Web应用防火墙是通过执行一系列针对HTTP/HTTPS的安全策略来专门为Web应用提供保护的一款产品。基本/简单绕过方法:1、注释符http://www.site.com/index.php?page_id=-15 /*!UNION*/ /*!SELECT*/ 1,2,3,...
分类:其他好文   时间:2015-03-28 21:36:18    阅读次数:174
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!