in reply to Filtering MySQL results
In SQL Server, the check is not case-sensitive, however , if you're using oracle, you might want to write the SQL Stmt like this :$sth = $dbh->prepare("SELECT username,password,group FROM users where +group = 'Admin'"); $sth->execute;
hth...SELECT username,password,group FROM users where upper(group) = upper('admin')
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: MySQL
by thor (Priest) on Jul 19, 2002 at 11:58 UTC |