gpt4 book ai didi

php - 如何从mysql和php中连接行和列获取值?

转载 作者:行者123 更新时间:2023-11-30 01:32:50 24 4
gpt4 key购买 nike

我有一个这样的数据,我将其称为正常表:

 Z      0        0.01       0.02  
--- ------ ------- ------

-3.4 0.0003 0.0003 0.0003

-3.3 0.0005 0.0005 0.0005

-3.2 0.0007 0.0007 0.0006

-3.1 0.001 0.0009 0.0009

-3 0.0013 0.0013 0.0013

我的值为Z = -3.21

它表示rows = -3.2column = 0.01中的Z值

因此,我将得到值 = 0.0007

请帮忙。

谢谢。

最佳答案

你通过mysql运行下面的查询,value的值就是你想要的数字

<?php
$value = -3.21;

$Z = number_format($value * 10, 0, '', '') / 10;

$col = substr(floor($value * 100), -1);
if ($col > 0) {
$col /= 100;
}

$query = "SELECT `$col` as `value` FROM `normal` WHERE Z = '$Z'";
// $query = "SELECT `0.01` as `value` FROM `normal` WHERE Z = '-3.2'";

关于php - 如何从mysql和php中连接行和列获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17252398/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com