ai didi

php - Mysql根据字段获取三组行

转载 作者:行者123 更新时间:2023-11-29 03:54:22 24 4
gpt4 key购买 nike

我想在我的查询中包含三组行,每组 100 行。每组具有不同的数据值。所以像这样:

$result = mysql_query("SELECT * FROM actions WHERE appid='$appid' AND email!='' AND user_name!='' AND data='24' ORDER BY count DESC LIMIT 100") or die(mysql_error());
$result .= mysql_query("SELECT * FROM actions WHERE appid='$appid' AND email!='' AND user_name!='' AND data='23' ORDER BY count DESC LIMIT 100") or die(mysql_error());
$result .= mysql_query("SELECT * FROM actions WHERE appid='$appid' AND email!='' AND user_name!='' AND data='22' ORDER BY count DESC LIMIT 100") or die(mysql_error());

如何在一次查询中得到结果?

谢谢。

最佳答案

使用UNION:

SELECT * FROM tableA UNION SELECT * FROM tableB UNION SELECT * FROM tableC

关于php - Mysql根据字段获取三组行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16962296/

24 4 0
文章推荐: mysql - 在部门平均最高工资的基础上增加员工工资 1000
文章推荐: php - Laravel 4 迁移 :install ErrorException
文章推荐: php - 随机遍历数组而不提取重复值
文章推荐: php - 未定义的属性:CI_DB_mysql_result::$result
行者123
个人简介

我是一名优秀的程序员,十分优秀!

滴滴打车优惠券免费领取
滴滴打车优惠券
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com