Jump to content

php mysql where do i


waterboy

Recommended Posts

Hello,
I new to PHP and i dont know where i can put the "GROUP BY `uid`" so that my seach will work
Here is part of my code
[code]$query = "SELECT `input` , count( * ) AS input ,
                  `bot` as bot,
  `id` as id,
  `response` as response,
  `uid` as uid,
  `enteredtime` as enteredtime
          FROM `conversationlog`
  GROUP BY `uid`";

// ************* search *****************/
if( isset($_GET['search']) && !empty($_GET['search']))
{
    // WHERE found ?
    if(!stristr($query,"WHERE "))
$query .= " WHERE (";
    else
$query .= " AND (";
       
    // add field
    $query .= " bot LIKE '%".addslashes($_GET['search'])."%' OR";
    $query .= " id LIKE '%".addslashes($_GET['search'])."%' OR";
    $query .= " input LIKE '%".addslashes($_GET['search'])."%' OR";
    $query .= " response LIKE '%".addslashes($_GET['search'])."%' OR";
    $query .= " uid LIKE '%".addslashes($_GET['search'])."%' OR";
    $query .= " enteredtime LIKE '%".addslashes($_GET['search'])."%' OR";

// delete last OR
$query = substr($query,0,strlen($query)-3);
$query .= ")";//GROUP BY `uid`[/code]

When i used the search i get
[code]You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'WHERE ( bot LIKE '%21d05352bb6884d0ce49e80f5f34f740%' OR id LIKE '%21d05352bb688'[/code]

i think its the Goup by that is the probleme..

CAn someone point me in the right direction? i have attache the full code

[attachment deleted by admin]
Link to comment
Share on other sites

Here is the defnition of the table
[code]CREATE TABLE `conversationlog` (
  `bot` tinyint(3) unsigned NOT NULL default '0',
  `id` int(11) NOT NULL auto_increment,
  `input` text,
  `response` text,
  `uid` varchar(255) default NULL,
  `enteredtime` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
  PRIMARY KEY  (`id`),
  KEY `botid` (`bot`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=27 ;

--
-- Dumping data for table `conversationlog`
--

INSERT INTO `conversationlog` VALUES (1, 1, 'what is your name', 'My name is Anna.', '21d05352bb6884d0ce49e80f5f34f740', '2006-12-23 21:14:13');
[/code]


I tryed putting it at the last line
[code]$query .= "GROUP BY `uid`)";//[/code]

But i get this error

Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause

Link to comment
Share on other sites

If MySQL abides by the same rules as oracle then you [color=red][b]MUST[/b][/color] have any columns that appear in the select statement, that aren't group functions, in the GROUP BY clause...

[code]SELECT employee, department, AVG(salery)
FROM employees
GROUP BY employee[/code]

The above will give an error, the query must look like this...

[code]SELECT employee, department, AVG(salery)
FROM employees
GROUP BY employee, department[/code]

I hope this helps

Regards
Huggie
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.