zoukankan      html  css  js  c++  java
  • SQL中类型转换函数

    1.cast

       cast(表达式 as 数据类型)

       select 100.0 +cast('1000' as int)  -- 1100.0 默认把字符串转换成浮整形

     2.convert 万能转换

    convert(数据类型,表达式)

    select 100.0 + convert(int,'1000')-- 1100.0 默认把字符串转换成整形

    3.select * from student  order by  convert (int,bid) desc --bid列按照降序来排列,bid是varchar类型

    4.print convert(varchar(10),getdate(),120) --日期转换varchar(10)表示显示的字符长度,120表示style,可以在SSMS 帮助中查看详情

    5.cast不可以转换日期类型,convert可以通用

  • 相关阅读:
    asyncio
    pytz
    celery
    xml
    jsonpath
    requests
    SQLite 数据库存储
    SQLite 数据库存储
    Android 记住密码功能
    Android 记住密码功能
  • 原文地址:https://www.cnblogs.com/longxinyv/p/12230278.html
Copyright © 2011-2022 走看看