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

Posted LuckyKun的羊肉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL中遇到的问题以及解决方法出现负值相关的知识,希望对你有一定的参考价值。

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中遇到的问题以及解决方法出现负值的主要内容,如果未能解决你的问题,请参考以下文章

MYSQL中遇到的问题以及解决方法排序后筛选

如何在Sublime Text中添加代码片段

MYSQL中遇到的问题以及解决方法横转纵

MYSQL中遇到的问题以及解决方法分组统计数据

MYSQL中遇到的问题以及解决方法排序后筛选+横转纵

mysql安装过程以及遇到问题的解决方法