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
查看全文
相关阅读:
阅读笔记7
阅读笔记6
架构阅读笔记5
软件质量属性——易用性课堂讨论问题总结
Git 的 .gitignore 配置
zookeeper的简单搭建,java使用zk的例子和一些坑
MySQL中有关TIMESTAMP和DATETIME的对比
Mysql 如何设置字段自动获取当前时间,附带添加字段和修改字段的例子
spring boot注入error,Consider defining a bean of type 'xxx' in your configuration问题解决方案
net start命令发生系统错误5和错误1058的解决方法
原文地址:https://www.cnblogs.com/firstcsharp/p/9041516.html
最新文章
C++之explicit关键字
XML文件系统
QT控件之Qtable Widget
QT之数据类型间转换
Restful API学习Day3
Python学习之json序列化
RESTful API学习Day2
Git学习之连接GitHub远程仓库
Git配置信息相关命令
Vue Router学习笔记
热门文章
git常用命令(转载自用)
Vue学习第一天:Vue.js指令系统
前端知识点简要总结
Git学习一:基本用法
阅读笔记12
QTP测试web时:打开ie浏览器进行录制但qtp录制脚本为空
阅读笔记11
阅读笔记10
阅读笔记9
阅读笔记8
Copyright © 2011-2022 走看看