SQL SERVER类型与C#类型对照
Posted AI浩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL SERVER类型与C#类型对照相关的知识,希望对你有一定的参考价值。
SQL SERVER类型与C#类型对照
SQL SERVER类型 | C#类型 |
int | Int32 |
text | String |
bigint | Int64 |
binary | System.Byte[] |
bit | Boolean |
char | String |
datetime | System.DateTime |
decimal | System.Decimal |
float | System.Double |
image | System.Byte[] |
money | System.Decimal |
nchar | String |
ntext | String |
numeric | System.Decimal |
nvarchar | String |
real | System.Single |
smalldatetime | System.DateTime |
smallint | Int16 |
smallmoney | System.Decimal |
timestamp | System.DateTime |
tinyint | System.Byte |
uniqueidentifier | System.Guid |
varbinary | System.Byte[] |
varchar | String |
Variant | Object |
SQL SERVER类型与C#类型对照(二)
|
SQL语句中Select语句的执行顺序:
- From字句,组装来自不同数据源的数据
- Where字句,基于指定的条件对记录进行筛选。
- Group By 字句,将数据划分为对个分组。
- 使用聚合函数进行计算。
- 使用HAVING字句筛选分组。
- 计算所有的表达式。
- 使用OrderBy对结果进行排序。
以上是关于SQL SERVER类型与C#类型对照的主要内容,如果未能解决你的问题,请参考以下文章