我尝试做的是获取一个mysql查询,在kla_abbonnement_groep列中的表megabase中搜索单词zilver,goud,platina,并将单词在列中的时间返回到一个数字。
数据库列由2x zilver,2 x goud,2 x platina组成。
我有以下代码,但它不起作用。我尝试了很多其他方法,但那些没有显示任何东西的方法。下面的代码不断显示1,但它应显示为6.
<?
include 'data/php/config.php';
// create query
$result = mysql_query("SELECT COUNT(*) FROM megabase WHERE kla_abbonnement_groep = 'zilver' AND kla_abbonnement_groep = 'goud' AND kla_abbonnement_groep = 'platina'");
$num_rows = mysql_num_rows($result);
echo "$num_rows";
?>
感谢您提前提供任何帮助。
在RIKESH的帮助下将代码改为以下
<?
include 'data/php/config.php';
// create query
$query = "SELECT COUNT(*) FROM megabase WHERE kla_abbonnement_groep = 'zilver' OR kla_abbonnement_groep = 'goud' OR kla_abbonnement_groep = 'platina'";
print mysql_result(mysql_query($query),0)
?>
问题仍然是如何在同一页面上使用打印的数字,例如javascript。
当我添加:
$result = mysql_result(mysql_query($query),0);
我收到了错误。
解析错误:语法错误,第60行上的意外T_VARIABLE
我认为每个人都工作,感谢帮助他们完成了以下工作:
这是工作代码!
<?
include 'data/php/config.php';
// create query
$query = "SELECT COUNT(*) FROM megabase WHERE kla_abbonnement_groep = 'zilver' OR kla_abbonnement_groep = 'goud' OR kla_abbonnement_groep = 'platina'";
print mysql_result(mysql_query($query),0);
$result1 = mysql_result(mysql_query($query),0);
?>
答案 0 :(得分:3)
使用时应使用OR
(任何条件满足)而不是AND
(所有条件都必须满足)。
$query = "SELECT COUNT(*) as count FROM megabase
WHERE kla_abbonnement_groep = 'zilver'
OR kla_abbonnement_groep = 'goud'
OR kla_abbonnement_groep = 'platina'";
<强>更新强>
$result = mysql_query($query) or die(mysql_error());
$row = mysql_fetch_assoc($result);
echo $row['count'];
注意:强>
Please, don't use mysql_*
functions in new code。它们不再被维护and are officially deprecated。请参阅red box?转而了解prepared statements,并使用PDO或MySQLi - this article将帮助您确定哪个。如果您选择PDO here is a good tutorial。
答案 1 :(得分:1)
SELECT kla_abbonnement_groep, COUNT(kla_abbonnement_groep) FROM megabase
WHERE kla_abbonnement_groep = 'zilver'
OR kla_abbonnement_groep = 'goud'
OR kla_abbonnement_groep = 'platina'
GROUP BY kla_abbonnement_groep
答案 2 :(得分:0)
答案:
<?
include 'data/php/config.php';
// create query
$query = "SELECT COUNT(*) FROM megabase WHERE kla_abbonnement_groep = 'zilver' OR kla_abbonnement_groep = 'goud' OR kla_abbonnement_groep = 'platina'";
print mysql_result(mysql_query($query),0);
$result1 = mysql_result(mysql_query($query),0);
?>