码迷,mamicode.com
首页 > 数据库 > 详细

MySQL中遇到的问题以及解决方法(一)出现负值

时间:2020-07-09 19:37:08      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:方法   pre   where   sign   cas   image   mys   style   load   

SELECT
    p.PatientID ,p.SBP, p.SBP2,p.SBP-p.SBP2
FROM
    ppg_data AS p 
    where p.SBP2 is not null 
    and p.SBP is not null
技术图片

更改为

SELECT

p.PatientID ,p.SBP, p.SBP2,cast(p.SBP as signed)-cast(p.SBP2 as signed)
FROM
    ppg_data AS p 
    where p.SBP2 is not null 
    and p.SBP is not null

 

MySQL中遇到的问题以及解决方法(一)出现负值

标签:方法   pre   where   sign   cas   image   mys   style   load   

原文地址:https://www.cnblogs.com/zhanghongpan/p/13275337.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!