码迷,mamicode.com
首页 >  
搜索关键字:decimal    ( 1358个结果
Informatica TO_BIGINT,TO_DECIMAL 转 字符串
IN_TAX RETURN VALUE '7245176201123435.6789' 7245176201123435 '7245176201123435.2' 7245176201123435 '7245176201123435.2.48' 7245176201123435 NULL NULL ...
分类:其他好文   时间:2018-01-16 13:48:34    阅读次数:218
C#中decimal ,double,float的区别
浮点型 Name CTS Type Description Significant Figures Range (approximate) float System.Single 32-bit single-precision floating point 7 ±1.5 × 10?45 to ±3. ...
分类:Windows程序   时间:2018-01-15 13:37:49    阅读次数:233
C# 变量和表达式
变量的命名: 第一个字符必须是字母、下划线或@; 其后的字符可以是字母、下划线或数字。 注意:区分大小写。 变量的类型: 数值类型 1.整数类型 byte、short、int、long sbyte、ushort、uint、unlong 2.浮点数类型 float、double、decimal 简单类 ...
分类:Windows程序   时间:2018-01-11 15:39:06    阅读次数:232
.NET/C#中对自定义对象集合进行自定义排序的方法
一个集合可否排序,要看系统知不知道排序的规则,像内建的系统类型,int ,string,short,decimal这些,系统知道怎么排序,而如果一个集合里面放置的是自定义类型,比如自己定义了一个Car类型,要把它排序,系统是不知道怎么办的。 那么,如何告知系统排序的规则呢?有以下几种方法: 1:对类 ...
分类:编程语言   时间:2018-01-09 22:14:21    阅读次数:330
Python 数字系列-数字格式化输出
数字的格式化输出 问题 你需要将数字格式化后输出,并控制数字的位数、对齐、千位分隔符和其他的细节。 解决方案 格式化输出单个数字的时候,可以使用内置的 format() 函数,比如: 1 >>> x = 1234.56789 2 3 >>> # Two decimal places of accur ...
分类:编程语言   时间:2018-01-08 12:19:07    阅读次数:304
数据库基础
数据库基础: 创建表:右键表或者直接点击创建表会出现创建表的对话框 类型选择: 布尔型数据:bit 整型:int 单精度浮点型:float 双精度浮点型:double 字符:char(长度) 字符串:varchar(长度) 日期:date 日期时间:datetime 小数:decimal 文本:te ...
分类:数据库   时间:2018-01-08 10:56:53    阅读次数:136
light oj 1138 - Trailing Zeroes (III)(阶乘末尾0)
You task is to find minimal natural number N, so that N! contains exactly Q zeroes on the trail in decimal notation. As you know N! = 1*2*...*N. For e ...
分类:其他好文   时间:2018-01-05 20:47:34    阅读次数:131
PAT 1010. Radix
1010. Radix (25) Given a pair of positive integers, for example, 6 and 110, can this equation 6 = 110 be true? The answer is "yes", if 6 is a decimal ...
分类:其他好文   时间:2018-01-04 19:30:15    阅读次数:299
数据库表结构设计
用户表(这里要注意,高并发的时候username是不能重复的,那么就采用了唯一索引user_name_unique,把username的唯一性交给mysql处理): 并且注意,密码是MD5加完盐之后的值,MD5是非对称加密,无法解密。 注意decimal的第一位数字是总位数,包含右边小数: ...
分类:数据库   时间:2018-01-03 00:50:11    阅读次数:338
mysql 常用的数据类型
数字类: 整数 tinyint smallint mediumint int bigint 浮点类:float double 定点类:decimal(M,D) 日期:Year date time datetime timstamp 字符串: char varchar text 二进制:bit bin ...
分类:数据库   时间:2018-01-02 15:19:10    阅读次数:162
1358条   上一页 1 ... 44 45 46 47 48 ... 136 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!