Jump to content

MySQL If statement


true2self

Recommended Posts

How do I write an if statement within sql. This is what i'm trying to do...

 

select password from usertable where id = 1234

if password = blahblah then flag = 1 else flag = 0.

 

 

I need to use this flag throughout my php file. Does that make sense? Please help.

Link to comment
Share on other sites

Read some posts on conditionals in MySQL but also read that it is not supported in general.  So, sorry I'm not sure how to do this in MySQL but you can do this in a combination of PHP and MySQL:

 

$sql = "SELECT password FROM usertable WHERE id = 1234";
$result = mysql_query($sql) or die(mysql_error());
$row = mysql_fetch_array($result);
$flag = ($row['password'] == "blahblah") ? 1 : 0;
$sql_update = "UPDATE usertable SET flag = $flag WHERE id = 1234";
$mysql_query($sql_update) or die(mysql_error());

Link to comment
Share on other sites

Thanks Maq! This helps alot!

 

I'm actually trying to apply the flag to an encrypted field, and if it is a certain password then i'm going to flag it, if not then setting it to 0. So my code looks like this just for testing purposes.

 

$pass_check = "SELECT id AS id " .
                            "FROM {$CFG->prefix}user " .
                            "WHERE password= MD5('g4k100') and username = 'aabbott1111'";

					$result = mysql_query($pass_check);
					$some_row = mysql_fetch_array($result);
					$flag = ($some_row['id'] == 84654) ? 1 : 0;

					echo $flag;

 

I'm pretty new to PHP, so if my query results are about 100 rows, that should not be a problem correct? I'm changing

$flag = ($some_row['id'] == $current_id) ? 1 : 0; 

and it should still work, correct?

Link to comment
Share on other sites

$pass_check = "SELECT id AS id " .

 

I don't think you need id AS id, just SELECT id .

 

and it should still work, correct?

Yes, it should.  I'm not sure how you get $current_id, session maybe?

 

Anyway, it's called a ternary operator.

 

Basically it translates to:

 

if($some_row['id'] == $current_id) {
   $flag = 1;
} else {
   $flag = 0;
}

 

Let me know how it all turns out.

 

 

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.