Jump to content

[SOLVED] why is query returning empty set???


drumhrd

Recommended Posts

building test DB for some stuff..put some test data in and did a simple query.

SELECT bandname FROM BANDS WHERE band_number = 25;

+-----------------+

| bandname        |

+-----------------+

|  Metal Militia  |

+-----------------+

1 row in set (0.00 sec)

 

 

 

Thought ok great..lets do the reverse and get the band_number where the bandname = "Metal Militia"

 

 

 

I get empty set

 

 

SELECT band_number FROM BANDS WHERE bandname = "Metal Militia";

Empty set (0.00 sec)

 

Link to comment
Share on other sites

It's a no go

 

SELECT band_number FROM BANDS WHERE bandname = 'Metal Militia';

 

Empty set (0.00 sec)

 

It seems to be doing this for everything..here is another piece of the test data doing the same thing

 

 

mysql> SELECT bandname FROM BANDS WHERE band_number = 28; 

+------------------------+

| bandname              |

+------------------------+

|  Guitars and Tractors  |

+------------------------+

1 row in set (0.00 sec)

mysql> SELECT band_number FROM BANDS WHERE bandname = 'Guitars and Tractors';

Empty set (0.00 sec)

 

Link to comment
Share on other sites

nope still not working

 

mysql> SELECT band_number,bandname FROM BANDS WHERE bandname = 'Guitars and Tractors';

Empty set (0.00 sec)

 

 

here is how I added data to the DB..don't laugh..it's just test data.

 

INSERT INTO BANDS (bandname, email, myspace, facebook, bio, genre, image, css_file) VALUES (" Metal Militia "," mailto:someband1@someplace.com "," http://www.myspace.com/something "," http://www.facebook.com/someband "," Metal Milita      We stole our name from Metallica, because we are posers.  We really play polka, but we want to be known as a metal band…yeha I like country..woo hoo..your momma's fat "," metal "," https://www.artists2you.com/images/ "," https://www.artists2you.com/css/221.css ")

 

 

 

 

The only think I can do is use a LIKE clause to find it

SELECT band_number FROM BANDS WHERE bandname LIKE '%Metal Militia%' ;

+-------------+

| band_number |

+-------------+

|          25 |

+-------------+

1 row in set (0.00 sec)

 

Link to comment
Share on other sites

I see excessive white-space both before and after the quotes - " Metal Militia "

 

In programming, " Metal Militia " and "Metal Militia" are two completely different pieces of data because computers only do exactly what their code and data tells them to do.

Link to comment
Share on other sites

well after really thinking about the input method..I realized I have leading and trailing spaces

 

mysql> SELECT band_number FROM BANDS WHERE bandname = ' Metal Militia ';

+-------------+

| band_number |

+-------------+

|          25 |

+-------------+

1 row in set (0.00 sec)

 

 

 

ANY IDEA ON HOW TO STRIP THEM OUT?

 

 

THANKS FOR THE HELP GUYS

 

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.