zoukankan      html  css  js  c++  java
  • MSSQL 和 REDIS的数据类型对应关系

               when user_type_id in (34) then 'BLOB' --image
                when user_type_id in (35) then 'CLOB' --text 
                when user_type_id in (48) then 'TINYINT' 
                when user_type_id in (52) then 'SMALLINT' 
                when user_type_id in (56) then 'INTEGER' --tinyint
                when user_type_id in (58,61) then 'DATE' --smalldatetime,datetime
                when user_type_id in (59,60,122) then 'REAL' --real,monery,smallmoney
                when user_type_id in (62) then 'FLOAT' --float
                when user_type_id in (99) then 'NCLOB' --ntext
                when user_type_id in (104) then 'BIT' --bit
                when user_type_id in (106) then 'DECIMAL' --decimal
                when user_type_id in (108) then 'NUMERIC' --numeric
                when user_type_id in (127) then 'BIGINT' --bigint
                when user_type_id in (165) then 'VARBINARY' --varbinary
                when user_type_id in (167) then 'VARCHAR' --varchar
                when user_type_id in (173) then 'BINARY' --binary
                when user_type_id in (175) then 'CHAR' --char
                when user_type_id in (189) then 'TIMESTAMP' --timestamp
                when user_type_id in (231) then 'NVARCHAR' --nvarchar
                when user_type_id in (239) then 'NCHAR'--nchar

  • 相关阅读:
    python cook 整理
    Ajax
    跨站请求伪造 CSRF
    tornado web
    python hashable
    扩大了一个逻辑卷,resize2fs 保错:没有这个超级块
    linux重启后进入了救援模式,无法远程登录
    如何安装JDK以及配置win10的环境变量
    输出菱形
    6.28作业(2.使用3种方式求100以内偶数和)
  • 原文地址:https://www.cnblogs.com/champaign/p/5956975.html
Copyright © 2011-2022 走看看