检查mysql列中是否存在值

时间:2014-12-22 23:16:11

标签: php mysql arrays

有没有办法检查mysql列中是否存在值?我有桌面歌曲,有一些列,其中一个叫做'agent_ip',我将放置一个将访问该网站的所有用户ip的列表/数组。我需要检查列'agent_ip'中是否存在当前用户ip。以下是我的一些代码:

public function voteSong($song_id, $case, $agent_ip) {           
    $query = $this->link->prepare("SELECT * FROM songs WHERE id = ? LIMIT 1"); 
    $query->bindValue(1, $song_id);
    $query->execute();
    $rowcount = $query->rowCount();        

    if ($rowcount != 0)
    {
        if (!in_array($agent_ip, $r['ip']))
        {
            if ($case === 'like')
            {
                while($r = $query->fetch())
                {
                    $vote = $r['votes'] + 1;
                }
            } 
            elseif ($case === 'dislike')
            {
                while ($r = $query->fetch())
                { 
                    if ($r['votes'] > 0)
                    {
                        $vote = $r['votes'] - 1;
                    }
                    else
                    {
                        $vote = 0;
                    }
                }
            }
            $query = $this->link->prepare("UPDATE songs SET datetime = ?, votes = ?, agent_ip = ? WHERE id = ?"); 
            $query->execute(array(date("Y-m-d H:i:s"), $vote, $agent_ip, $song_id));
        }
    }
}

if(!in_array($agent_ip, $r['ip']))包含错误的函数,它不起作用,但我需要一个替代mysql。 $ r ['ip']变量是来自'agent_ip'列的数据,看起来像这个127.0.0.1,127.0.0.1,127.0.0.1(仅使用127.0.0.1,每个127.0.0.1是不同的ip)< / p>

2 个答案:

答案 0 :(得分:2)

如果您只是针对单个IP进行检查,为什么不从以下位置修改您的查询:

"SELECT * FROM songs WHERE id = ? LIMIT 1"

要:

"SELECT * FROM songs WHERE id = ? AND agent_ip = ? LIMIT 1"

当您仅查询特定IP并返回单行时,查询整个结果集似乎有点浪费。

编辑:您当前的方法效率极低,每次要查询歌曲以检查IP是否存在时,您都会传递一个唯一的agent_ip,这没关系,但是您正在创建一个新的数据库每次从中撤回属于该歌曲的所有信息的连接。

假设我们有1首歌和3IP,目前应用程序的工作方式如下:

1) Call the method, passing IP_1
2) Query the database getting all songs for ID1
3) Check if IP_1 is in the result set and do process

4) Call the method, passing IP_2
5) Query the database getting all songs for ID1
6) Check if IP_2 is in the result set and do process

7) Call the method, passing IP_3
8) Query the database getting all songs for ID1
9) Check if IP_2 is in the result set and do process

正如你所看到的,这里有很多重复会阻碍你的应用程序性能,因为它会扩展,你可以更好地修改你当前的功能来接受一首歌曲的结果列表。仅查询一次,然后通过传递具有唯一IP地址的结果数组来递归调用检查函数。

更新您说明了I understand that i need to have 2 tables(1 = songs; 2 = votes). But i cannot imagine how i will get songs from database, arranged by votes quantity.

您应该阅读SQL的JOIN文档,概念很简单 - JOIN允许您根据要查询的内容提取更详细的信息,在您的示例中,您可能希望找出特定歌曲有多少票。

您的表格可能如下所示:

Songs 
SONG_ID     Primary Key
SONG_TITLE  
SONG_DURATION
SONG_TAGS

Votes
VOTE_ID     Primary Key
SONG_ID     Foreign Key - (references the song_id table)
VOTE_RES    Bool (either 0 for no, 1 for yes)
AGENT_IP    Who sent the vote

然后,您可以通过执行加入来了解有多少人说他们喜欢这首歌:

SELECT * FROM songs 
JOIN votes 
ON songs.song_id = votes.song_id 
WHERE songs.song_id = 1 
AND votes.vote_res = 1;

这将返回id为1及其所有相关喜欢的所有歌曲。希望有所帮助:)

答案 1 :(得分:1)

首先,您需要将列中的数据反序列化/解码为正确的php array,然后您可以使用in_array函数。在您的帖子编辑中,您声明您有一个以逗号分隔的IP列表,因此要将其转换为数组,您需要使用explode函数:

$ip_list = explode(', ', $r['ip']);

现在您可以在新阵列上使用in_array函数:

if(!in_array($agent_ip, $ip_list))