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