Forum: MS SQL Sep 9th, 2008 |
| Replies: 10 Views: 1,284 Try something like this...
SELECT distinct(person) from table where ((height = 'tall' and hair='brown') or (height='tall' and eyes='blue') or (eyes='blue' and hair = 'brown') |
Forum: MySQL Sep 9th, 2008 |
| Replies: 2 Views: 751 What server language are you using? If it's PHP, you could do something like this...
$password = $_REQUEST['password'];
$enc_password = md5($password);
... before storing it in the... |