码迷,mamicode.com
首页 >  
搜索关键字:select 异步加载    ( 41031个结果
PL/SQL数据导入导出浅谈(1)
近来需要通过PL/SQL向Oracle中导数据,特此总结一下试例表:test字段:id;name;org;1、直接复制粘贴(当数据量不是特别大的时候)1)使用select * from test for update语句2)执行之后,点击查询结果窗口左上方的小锁,打开之后,便可在相应的字段下面进行复...
分类:数据库   时间:2014-06-07 02:38:21    阅读次数:271
比较长的sql语句
SELECT o. *FROM hq_goods gLEFT JOIN hq_orders o ON o.goods_id = g.idWHERE o.user_id =73AND o.state =1AND o.id not in( select c.order_id from hq_comme....
分类:数据库   时间:2014-06-04 21:36:03    阅读次数:297
sql知识
1、LEN() 函数LEN 函数返回文本字段中值的长度。SQL LEN() 语法SELECT LEN(column_name) FROM table_name在Oracle中对应的是length()函数。2、
分类:数据库   时间:2014-06-04 21:33:54    阅读次数:260
每天努力一点之SQL(二) count sum case when then group by
1.select sum(CASE WHEN A.[STATUS]=0 THEN 1 ELSE 0 end) as a1,sum(CASE A.[STATUS] WHEN 1 THEN 1 ELSE 0 end) as a2,sum(CASE A.[STATUS] WHEN 2 THEN 1 ELS...
分类:数据库   时间:2014-06-04 21:10:46    阅读次数:513
linux中select的使用方法
fd_set是一组文件描述符(fd,file descriptor)的集合,它用一位来表示一个fd。系统提供了4个宏对描述符集进行操作: #include #include //设置文件描述符集fdset中对应于文件描述符fd的位(设置为1)void FD_SET(int fd, fd_set *f...
分类:系统相关   时间:2014-06-04 20:48:17    阅读次数:343
SQL语句:关于复制表结构和内容到另一张表中的SQL语句
1.复制新表结构及数据到新表create table 新表 select * from 旧表2.只复制表结构到新表create table 新表 select * from 旧表 where 1=23.复制旧表的数据到新表(假设两个表结构一样)insert into 新表 select * fr.....
分类:数据库   时间:2014-06-04 19:08:52    阅读次数:280
oracle 数据库远程导出
exp 用户名/密码@IP:端口/数据库名 file=文件路径 full=y;exp scebm1/ebm@10.3.10.16:1521/scebm file=D:scebm20140527.dmp//如果报错 去掉 full=y试一试分享一个,oracle查询锁表SELECT object_na...
分类:数据库   时间:2014-06-03 13:57:51    阅读次数:320
Picking Values with the UIPicker View
ProblemYou want to allow the users of your app to select from a list of values.SolutionUse the UIPickerView class.DiscussionA picker view is a graphic...
分类:其他好文   时间:2014-06-03 12:22:56    阅读次数:289
make screenshot at Eclipse
In Eclipse, from the Window menu, select Open Perspective > Other... > DDMS. Select the Kindle Fire tablet, and click the camera icon. (If the tablet ...
分类:系统相关   时间:2014-05-29 20:29:15    阅读次数:479
JQuery select控件的相关操作
本文转载于 http://www.cnblogs.com/zfc2201/archive/2012/09/06/2674312.htmlJQuery获取和设置Select选项方法汇总如下:获取select先看看下面代码:$("#select_id").change(function(){//code...
分类:Web程序   时间:2014-05-29 16:57:39    阅读次数:289
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!