我的表架构如下:
id || image1 || image2 || image1vote || image2vote || uid
1 abc.jpb adc.jpg 50 40 12
2 bc.jpb dc.jpg 20 70 13
3 kjc.jpb ydc.jpg 20 10 10
4 pjc.jpb mkc.jpg 80 60 10
我使用 MySQL 和 phpMyAdmin 作为我的后端。
我从前端上传了两个存储在数据库中的图像。对于这两个图像,我分别保存选票。投票image1
存储在列image1vote
中,而投票image2
存储在列中image2vote
。
我的问题如下:我想要得票最多的图像的图像路径。所以,如果 image1 比 image2 有更多的投票,我想要的值image1
和其他方式。
例如:在第一行中,我想要 的值,image1
因为 in 的值image1vote
大于 in 的值image2vote
。在第二行,我想要 的值image2
。