码迷,mamicode.com
首页 >  
搜索关键字:col    ( 36678个结果
JS计算器(自制)
<!doctype html><html><header><meta charset="utf-8"><script src="jquery-1.9.1.min.js"></script><style>button{ width:40px; background-color:#2B91D5; col ...
分类:Web程序   时间:2017-03-03 20:56:10    阅读次数:210
几个重要的 ASM Disk Groups 参数
几个重要的 ASM Disk Groups 参数ASM Disk Group 属性:Disk group的属性是与disk group 对应的,而不是和ASM 实例对应 查看Disk group的属性:SQL> col name for a40SQL> set pagesize 200SQL> se ...
分类:其他好文   时间:2017-02-28 22:34:00    阅读次数:247
列表组(list-group)
<div class='container'> <div class="row"> <div class="col-lg-6 col-md-6 wow fadeInLeft">//fadeInLeft这个列表组从左边淡入 <div class="list-group"> <a href="#" cl ...
分类:其他好文   时间:2017-02-26 21:05:27    阅读次数:409
imagettftext
ImageTTFText 写 TTF 文字到图中。 语法: array ImageTTFText(int im, int size, int angle, int x, int y, int col, string fontfile, string text); 返回值: 数组 函数种类: 图形处理 ...
分类:其他好文   时间:2017-02-26 00:03:45    阅读次数:152
将数值矩阵映射为栅格图
require(grDevices) # for coloursx <- y <- seq(-4*pi, 4*pi, len = 27)r <- sqrt(outer(x^2, y^2, "+"))image(z = z <- cos(r^2)*exp(-r/6), col = gray((0:32 ...
分类:其他好文   时间:2017-02-24 12:18:35    阅读次数:240
div.load()方式局部刷新div
主页面部分 <section class="content-header"> <h5> 数据字典 </h5> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-md ...
分类:其他好文   时间:2017-02-24 11:52:14    阅读次数:2251
mysql——索引
一、索引的简单操作(增删改查)创建索引CREATE[UNIQUE|FULLTEXT|SPATIAL]INDEXindex_name[USINGindex_type]ONtable_name(index_col_name,...)[UNIQUE|FULLTEXT|SPATIAL]:表示创建索引的类型,分别表示唯一索引、全文索引、空间索引;[USINGindex_type]:表示索引的类型,索引..
分类:数据库   时间:2017-02-22 15:34:43    阅读次数:219
bootstrap-table设置某列序号自增
col = [{ field: 'SerialNumber', title: '序号', formatter: function (value, row, index) { return index+1; } }] ...
分类:其他好文   时间:2017-02-20 11:40:53    阅读次数:718
hive中创建外部分区表测试
--创建外部表 CREATE EXTERNAL TABLE my_report( last_update string, col_a string) PARTITIONED BY ( par_dt string)ROW FORMAT DELIMITED FIELDS TERMINATED BY ', ...
分类:其他好文   时间:2017-02-16 14:42:15    阅读次数:152
算法基础之2维数组90度旋转
data=[[col for col in rang(4)] for row in rang(4)] for row in data: print(row) print(" ") for r_index, row in enumerate(data): for c_index in range (r ...
分类:编程语言   时间:2017-02-15 13:35:41    阅读次数:132
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!