博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
T-SQL 类型转换
阅读量:5035 次
发布时间:2019-06-12

本文共 1003 字,大约阅读时间需要 3 分钟。

1 use StudentManageDB 2 go 3 --定义变量并查询 4 declare @sumScore int 5 select @sumScore=(CSharp+SQLServerDB) from ScoreList 6 where StudentId=100003 7 --输出 8 --print '学号=100003总成绩:'+@sumScore 9 10 print '学号=100003总成绩:'+convert(varchar(20),@sumScore)
1 use StudentManageDB2 go3 --使用CAST转换4 select  StudentName + '的出生日期是:' + CAST(Birthday as varchar(50)) AS '学生信息'5 from Students where StudentId=1000056 --使用CONVERT转换7 select  StudentName + '的出生日期是:' + CONVERT(varchar(50),Birthday,102) AS '学生信息'8 from Students where StudentId=100005
1 use StudentManageDB 2 go 3 --定义变量 4 declare @birthday datetime,@days int,@age int 5 --查询出生日期 6 select @birthday=Birthday from Students where StudentId=100002 7 --计算出生天数 8 set @days=datediff(dayofyear,@birthday,getdate()) 9 --计算年龄10 set @age=floor(@days/365)11 --输出信息12 print '100002学员年龄:'+convert(varchar(20),@age)13 14 --直接查询15 select FLOOR(DATEDIFF(dy, Birthday, GETDATE())/365) 年龄16 from Students where StudentId=100002

 

 

转载于:https://www.cnblogs.com/Spinoza/p/10041049.html

你可能感兴趣的文章
where,having与 group by连用的区别
查看>>
【MySQL】MySQL锁和隔离级别浅析二 之 INSERT
查看>>
Oracle T4-2 使用ILOM CLI升级Firmware
查看>>
4.14上午
查看>>
数据分析 -- 白话一下什么是决策树模型(转载)
查看>>
Java SPI机制原理和使用场景
查看>>
web前端java script学习2017.7.18
查看>>
删除TXPlatform
查看>>
LaTex:图片排版
查看>>
并发访问超时的问题可能性(引用)
查看>>
中小团队基于Docker的Devops实践
查看>>
利用python打开摄像头并保存
查看>>
System函数的使用说明
查看>>
Selenium-测试对象操作之:获取浏览器滚动条滚动距离
查看>>
Linux下MySQL数据库安装与配置
查看>>
Extjs String转Json
查看>>
oracle入门(4)——少而常用的命令
查看>>
打印机设置(PrintDialog)、页面设置(PageSetupDialog) 及 RDLC报表如何选择指定打印机...
查看>>
Java 虚拟机部分面试题
查看>>
二叉树的遍历问题总结
查看>>