如何在 postgresql 中显示 6 的幂
Posted
技术标签:
【中文标题】如何在 postgresql 中显示 6 的幂【英文标题】:How to display the power of 6 in postgresql 【发布时间】:2021-06-23 10:47:59 【问题描述】:我想显示 10'6,但是当我尝试我的代码时它返回错误
IF labres.full_blood_count_twcc IS NOT NULL THEN
v_labres := v_labres || ' Total White Cell Count#: '||labres.full_blood_count_twcc|| power(10,6) '/L ';
END IF;
有没有办法在 postgresql 中显示前缀?
【问题讨论】:
错误是什么? 类型“电源”不存在 【参考方案1】:我只是返回10<sup>6</sup>
然后它显示我想要什么
【讨论】:
以上是关于如何在 postgresql 中显示 6 的幂的主要内容,如果未能解决你的问题,请参考以下文章