码迷,mamicode.com
首页 >  
搜索关键字:rom    ( 15771个结果
5select的运用
四、select的运用 --汇总函数 max()最大值,min()最小值,avg()平均值select max(age),min(age),avg(age) from tablename; --算出表中age的最大值,并非全部max(age)数据select max(age),min(age),av ...
分类:其他好文   时间:2018-03-04 23:55:14    阅读次数:195
Leetcode 12——Integer to Roman
12.Integer to Roman Given an integer, convert it to a roman numeral. Input is guaranteed to be within the range from 1 to 3999. 拿到题目,分析,比较简单,除掉相应的基数单位 ...
分类:其他好文   时间:2018-03-04 23:50:48    阅读次数:218
8函数
八、函数--创建函数/存储过程之分支语句--if else 的使用 --case when 的使用 DELIMITER //CREATE FUNCTION func(s INT) RETURNS VARCHAR(32) --此处返回函数的数据类型,return+sBEGIN DECLARE gra ...
分类:其他好文   时间:2018-03-04 23:50:00    阅读次数:227
方法参数的值传递
Java中没有指针,所以也没有引用传递了,仅仅有值传递不过可以通过对象的方式来实现引用传递(1)传递的是基本数据类型和String时,传递的是基本数据类型和String的内存值String对象值不能改变,存储在常量区(Rom)(2)传递的是非String对象时,传递的是非String类型的引用地址值 ...
分类:其他好文   时间:2018-03-04 19:03:54    阅读次数:125
Selenium 安装
电脑重装了系统,重新安装selenium,顺便温习一下。安装环境:Windows系统,64位,Python3.x版本。 第一步:安装Python 打开python官网:https://www.python.org/,找到“Download”,在其下拉菜单中选择Windows系统。打开后会有多个版本, ...
分类:其他好文   时间:2018-03-04 18:10:56    阅读次数:131
安装 Python IDLE (Linux)
Python IDLE (Integrated Development and Learning Environment) 是一个官方的轻量级 Python IDE.在不同的 Linux 的发布版本中,其安装命令有所不同,具体如下: 1. CentOS / Fedora / RHEL(Red Hat ...
分类:编程语言   时间:2018-03-04 18:07:19    阅读次数:262
Spark:如何替换sc.parallelize(List(item1,item2)).collect().foreach(row=>{})为并行?
代码场景: 1)设定的几种数据场景,遍历所有场景:依次统计满足每种场景条件下的数据,并把统计结果存入hive; 2)已有代码如下: 备注: 在generateSampleBySenceType()函数内部包含有: 如果把代码修改: 则会提示:generateSampleBySenceType()内部 ...
分类:其他好文   时间:2018-03-04 18:05:14    阅读次数:703
在oracle11g中删除sde用户报ora - 21700错误的解决方法
PS C:\Users\Administrator> sqlplus sys/xxxx@orcl as sysdba;SQL*Plus: Release 11.2.0.1.0 Production on 星期日 3月 4 12:55:53 2018Copyright (c) 1982, 2010, ...
分类:数据库   时间:2018-03-04 14:36:36    阅读次数:288
邻接表
这就是SPFA的邻接表存法,用于变多的情况 ...
分类:其他好文   时间:2018-03-04 11:55:56    阅读次数:125
(HDU 5900)QSC and Master(区间DP)
Problem Description Every school has some legends, Northeastern University is the same.Enter from the north gate of Northeastern University,You are fa ...
分类:其他好文   时间:2018-03-04 01:08:52    阅读次数:198
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!