int int money decimal nchar string ntext string nvarchar string numeric decimal real float smalldatetime dateTime smallint short smallmoney decimal sql_variant string sysname string text string timestamp dateTim
tinyintunsignedByte varbinarybase64Binary varcharstring uniqueidentifierstring sql:datatype 批注 sql:datatype批注用于指定 SQL Server 数据类型;必须在以下情况下指定此批注: 将从XSDdateTime、date或时间类型批量加载到dateTimeSQL Server 列。 在这种情况下,必须使用 sql:data...
Data Type 数据类型 Table API中的数据类型 Java/Scala Python 物理提示 数据类型列表 Java/Scala 字符串类型 CHAR VARCHAR / STRING 二进制字符串类型 BINARY VARBINARY / BYTES 精确数值类型 DECIMAL TINYINT SMALLINT INT BIGINT 近似数值类型 FLOAT DOUBLE 日期和时间类型 DATE TIME TIMESTAMP TIMESTAMP WITH TI...
tinyint SQL Server tinyint 数据类型未签名。 默认情况下,tinyint 列绑定到数据类型SQL_C_UTINYINT变量。 别名数据类型 连接到 SQL Server 4.2x 实例时,ODBC 驱动程序会将 NULL 添加到不显式声明列的可为 null 性的列定义。 因此,将忽略在别名数据类型的定义中存储的为 Null 性。 连接到 SQL Server 4.2x...
Int 属性 MaximumLength 属性 Money 属性 Name 属性 NText 属性 NumericPrecision 属性 NumericScale 属性 NVarCharMax 属性 Real 属性 Schema 属性 SmallDateTime 属性 SmallInt 属性 SmallMoney 属性 SqlDataType 属性 SysName 属性 Text 属性 Timestamp 属性 TinyInt 属性 UniqueIdentifier 属...
Numeric Data Types Data typeDescription BIT(size)A bit-value type. The number of bits per value is specified insize. Thesizeparameter can hold a value from 1 to 64. The default value forsizeis 1. TINYINT(size)A very small integer. Signed range is from -128 to 127. Unsigned range is...
smallint-32,768 to 32,767-2^15 to 2^15-12 bytes tinyint0 to 2552^0-1 to 2^8-11 byte Remarks Theintdata type is the primary integer data type in SQL Server. Thebigintdata type is intended for use when integer values might exceed the range that is supported by theintdata type....
tinyint integer int uniqueidentifier character varchar(max) varbinary(n) n <= 8000 raw varbinary(max) Only allowed as input parameter and output varbinary(max) raw varbinary(max) Only allowed as input parameter and output varchar(n) n <= 8000 character varchar(max) The input data frame (...
reval="Int16"; 64 break; 65 case"smallmoney": 66 reval="System.Decimal"; 67 break; 68 case"timestamp": 69 reval="System.DateTime"; 70 break; 71 case"tinyint": 72 reval="System.Byte"; 73 break; 74 case"uniqueidentifier":
SQL : create table datatype (d_tinyint tinyint, d_smallint smallint, d_mediumint mediumint, d_int int primary key auto_increment, d_bigint bigint, d_decimal decimal, d_datetime datetime not null, d_timestamp timestamp not null, d_char char, d_varchar varchar(20), d_text text ) ...