Author Topic: phpMyAdmin newbie question  (Read 752 times)

0 Members and 1 Guest are viewing this topic.

Offline bazmatiTopic starter

  • Irregular
  • Posts: 4
    • View Profile
phpMyAdmin newbie question
« on: August 18, 2009, 11:17:19 AM »
Hi all, I'm just teaching myself PHP and MySQL. I'm just trying to do a simple conditional:

SELECT first_name FROM users WHERE last_name ='Simpsons';

but I get this error if there is going to be more than one record returned:

#1064 - 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 '' at line 1

I'm using phpMyAdmin 2.7.0-pl2 if this helps.

Offline Maq

  • Global Moderator
  • 'Insane!'
  • *
  • Posts: 11,004
  • Gender: Male
    • View Profile
    • Top Ecigs Reviews
Re: phpMyAdmin newbie question
« Reply #1 on: August 18, 2009, 11:20:22 AM »
Looks correct to me.  Are you querying directly in phpMyAdmin?
Electronic Cigarette Reviews - Smoking alternatives, find YOUR ecig!
ini_set ("display_errors""1");
error_reporting(E_ALL);

Offline bazmatiTopic starter

  • Irregular
  • Posts: 4
    • View Profile
Re: phpMyAdmin newbie question
« Reply #2 on: August 18, 2009, 11:33:34 AM »
Hi Maq yes I'm querying in phpMyAdmin, if i want to select and show all records its fine it shows them all, but as soon as I try to narrow it down anything with more than one record comes up with an error.

Offline Maq

  • Global Moderator
  • 'Insane!'
  • *
  • Posts: 11,004
  • Gender: Male
    • View Profile
    • Top Ecigs Reviews
Re: phpMyAdmin newbie question
« Reply #3 on: August 18, 2009, 11:38:07 AM »
Can you show me your table structure?

Code: [Select]
describe users;
Electronic Cigarette Reviews - Smoking alternatives, find YOUR ecig!
ini_set ("display_errors""1");
error_reporting(E_ALL);

Offline bazmatiTopic starter

  • Irregular
  • Posts: 4
    • View Profile
Re: phpMyAdmin newbie question
« Reply #4 on: August 18, 2009, 11:44:11 AM »
I've attached a screen shot is this what you want to see, sorry if this is an obvious question I've only just started to learn.

[attachment deleted by admin]

Offline Maq

  • Global Moderator
  • 'Insane!'
  • *
  • Posts: 11,004
  • Gender: Male
    • View Profile
    • Top Ecigs Reviews
Re: phpMyAdmin newbie question
« Reply #5 on: August 18, 2009, 11:48:48 AM »
Hmm, still don't see anything peculiar.  Are you inputting your query exactly like this?

Code: [Select]
SELECT first_name FROM users WHERE last_name ='Simpsons';
The error doesn't seem to relate to your query.  Maybe I'm overlooking something, but everything looks valid to me.
Electronic Cigarette Reviews - Smoking alternatives, find YOUR ecig!
ini_set ("display_errors""1");
error_reporting(E_ALL);

Offline bazmatiTopic starter

  • Irregular
  • Posts: 4
    • View Profile
Re: phpMyAdmin newbie question
« Reply #6 on: August 18, 2009, 11:51:04 AM »
Yeah i've inputted exactly that. Everything else I'm working on is fine, just this one thing.
Going to give it a try on my pc at home and see if it works ok on that.

Thanks for your help Maq.

Offline Maq

  • Global Moderator
  • 'Insane!'
  • *
  • Posts: 11,004
  • Gender: Male
    • View Profile
    • Top Ecigs Reviews
Re: phpMyAdmin newbie question
« Reply #7 on: August 18, 2009, 11:53:15 AM »
Yeah i've inputted exactly that. Everything else I'm working on is fine, just this one thing.
Going to give it a try on my pc at home and see if it works ok on that.

Thanks for your help Maq.

The only other suggestions is to try doing it through the command line.
Electronic Cigarette Reviews - Smoking alternatives, find YOUR ecig!
ini_set ("display_errors""1");
error_reporting(E_ALL);