zoukankan
html css js c++ java
Sql Server 数据类型与 C# 数据类型对照
Sql Server
C#
简写
bigint
System.Int64
long
tinyint
System.Byte
byte
binary(50)
System.Byte[]
byte[]
image
System.Byte[]
byte[]
varbinary(50)
System.Byte[]
byte[]
timestamp
System.Byte[]
byte[]
bit
System.Boolean
bool
char(10)
System.String
string
nchar(10)
System.String
string
ntext
System.String
string
nvarchar(50)
System.String
string
varchar(50)
System.String
string
text
System.String
string
date
System.DateTime
System.DateTime
datetime
System.DateTime
System.DateTime
datetime2(7)
System.DateTime
System.DateTime
smalldatetime
System.DateTime
System.DateTime
datetimeoffset(7)
System.DateTimeOffset
System.DateTimeOffset
time(7)
System.TimeSpan
System.TimeSpan
decimal(18,0)
System.Decimal
decimal
money
System.Decimal
decimal
numeric(18,0)
System.Decimal
decimal
smallmoney
System.Decimal
decimal
float
System.Double
double
int
System.Int32
int
real
System.Single
float
smallint
System.Int16
short
查看全文
相关阅读:
groovy脚本语言基础1
014.Ansible Playbook Role 及调试
013.Ansible Playbook include
012.Ansible高级特性
011.Ansible条件语句
010.Ansible_palybook 循环语句
009.Ansible模板管理 Jinja2
008.Ansible文件管理模块
007.Ansible变量Fact,魔法变量和lookup生成变量
006.Ansible自定义变量
原文地址:https://www.cnblogs.com/firstcsharp/p/9041516.html
最新文章
玩转控件:封装Dev的SearchLookupEdit
玩转控件:对Dev中GridControl控件的封装和扩展
玩转控件:封装Dev的LabelControl和TextEdit
玩转控件:扩展Dev中SimpleButton
玩转控件:重写/重绘Dev中MessageBox弹窗控件
C# 视频监控系统(提供源码分享)
C#小游戏—钢铁侠VS太空侵略者
C# 小游戏-拼图魔方【Game Puzzle】
玩转控件:重绘DEVEXPRESS中DateEdit控件 —— 让DateEdit支持只选择年月 (提供源码下载)
详解深度学习中“注意力机制”
热门文章
美化你的终端利器Iterm2
【论文研读】强化学习入门之DQN
数据结构与算法--二分搜索(binary search)
Git敏捷开发--常用别名
设计模式之美--开闭原则
设计模式之美--单一职责原则
GNU的make命令、makefile编写
Git敏捷开发--stash命令
Docker常用命令--ps/attach/run
Git敏捷开发--reset和clean
Copyright © 2011-2022 走看看