vote up 0 vote down star

Howdy,

I'd like to select out of one table all the entries that match two criteria

SELECT * WHERE field1 IS $a AND field2 IS $b FROM TablaA

something like that ...

flag

5 Answers

vote up 3 vote down check

How about:

$query = "SELECT * FROM `TableA` WHERE `field1` = '$a' AND `field2` = '$b'";

Remember to mysql_real_escape_string() on $a and $b.

link|flag
cheers, and the quotes around the $b solve the question I was about to ask (why email addresses aren't working) – Daniel Nov 6 at 1:51
cherios Daniel! – thephpdeveloper Nov 6 at 1:54
vote up 1 vote down

SELECT * from tableA where field1 = $a and field2 =$b

link|flag
vote up 1 vote down
SELECT * FROM TablaA WHERE `field1` = $a AND `field2` = $b

$a and $b would need quotes if they might not be numeric. I had numbers in my head for some reason.

link|flag
vote up 1 vote down

Your query is a bit malformed, but you're close:

$a = mysql_real_escape_string($foo);
$b = mysql_real_escape_string($bar);

$sql = "
SELECT
    *
FROM
    `TablaA`
WHERE
    `field1` = '{$a}'
    AND `field2` = '{$b}'
";

Using prepared statements would be a lot better for escaping, but you're probably not ready for that wrench to be thrown into your plans. Just remember, as soon as you feel confident with this stuff, check out "Prepared Statements" and the "mysqli" extension.

link|flag
vote up 0 vote down
<?php
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = 'password';

$conn = mysql_connect($dbhost, $dbuser, $dbpass) or die ('Error connecting to mysql');

$dbname = 'petstore';
mysql_select_db($dbname);

$a = mysql_real_escape_string($input1);
$b = mysql_real_escape_string($input2);

$q = mysql_query("SELECT * FROM `TableA` WHERE `field1`='$a' AND `field2`='$b'");

?>

didn't know if you needed the connection stuff too.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.