码迷,mamicode.com
首页 >  
搜索关键字:select poll    ( 40639个结果
oracle行转列
针对oracle数据查询的数据,行转列1.wm_concat函数:例一:select c1,c2,wm_concat(c3) from T where.... group by c1,c2查询结果自动用“,”分割例二:select c1,c2,wm_concat(c3)over(partition ...
分类:数据库   时间:2014-05-10 02:10:46    阅读次数:430
sql自带函数语句
--取数值表达式的绝对值select abs(-41) 41select abs(41) 41select abs(-41.12) 41.12select abs(41.12) 41.12--弧度表达式 括号内是(1 -1)select acos(0.5) 1.0471975511966select...
分类:数据库   时间:2014-05-10 01:50:28    阅读次数:393
oracle中查看当前用户的表结构、主键、索引
1、查询表的所有列及其属性select t.*,c.COMMENTS from user_tab_columns t,user_col_comments c where t.table_name = c.table_name and t.column_name = c.column_name and...
分类:数据库   时间:2014-05-10 01:37:51    阅读次数:422
webdriver 选择下拉列表的操作
欢迎光临娇娇家的美衣阁 http://shop105984718.taobao.com/标准的下拉列表为select类型封装方法public void select(String xpath, String value){ Select s = new Select(driver.findEleme...
分类:Web程序   时间:2014-05-09 18:10:16    阅读次数:520
SQL Server面试题
前几天在博客园上看到一道SQL面试题,sc是表名。老师拿来与同学分享,让大家试做,要求是:查出每科成绩都>=80分的名字,看能写出几种方法。没有主外键,没有关联,脑袋一下子就蒙了。经老师讲解指导的两种方式:第一种:select name from sc group by name having MI...
分类:数据库   时间:2014-05-09 17:48:25    阅读次数:314
mysql 本地操作
mysql -uroot -p 不加封号因为没设密码直接回车俩次进入select user(); 查当前用户grant all privileges on *.* to test@"%" identified by ""; 添加一个新用户 mei mimagrant all pri...
分类:数据库   时间:2014-05-09 17:16:50    阅读次数:374
Oracle sysdate常用
SELECT * FROM (SELECT * FROM calenderDetail A ORDER BY a. calender desc ) WHERE rownum <3 ;//计算时间大于当前时间的最近2条记录取当前小时,以及相隔一小时v_begin_date:=to_date(to_ch...
分类:数据库   时间:2014-05-09 17:03:41    阅读次数:620
sql 分页row_number() over(order by key)
select * from ( select row_number() over(order by BD008_001) as row ,* from ...
分类:数据库   时间:2014-05-09 16:56:57    阅读次数:328
sql将一个表中的数据插入到另一个表中
sql将一个表中的数据插入到另一个表中列名不一定要相同,只要你在HH中列出要插入列的列表跟select from mm表中的选择的列的列表一一对应就可以了,当然两边的数据类型应该是兼容的。比如:insert into hh (fielda,fieldb,fieldc) select fieldx.....
分类:数据库   时间:2014-05-09 16:49:15    阅读次数:322
mysql
descdesc select * from legou_home_product_on 查看是否被索引;desc legou_home_product_on 查看表定义修改表名ALTER TABLE emp RENAME emp2修改字段名MYSQL里修改字段名的...
分类:数据库   时间:2014-05-09 12:30:34    阅读次数:375
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!