PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my alerts
my settings
my profile
Don't like ads?
PRO users
don't see any ads ;-)
Public Pastes
Untitled
0 sec ago
test
Lua | 1 sec ago
soul leech WA
3 sec ago
Untitled
6 sec ago
Untitled
7 sec ago
Untitled
29 sec ago
Untitled
C++ | 30 sec ago
Lab 3 problem 1
Python | 25 sec ago
Untitled
By: a guest on
May 9th, 2012
| syntax:
None
| size: 0.24 KB | hits: 15 | expires: Never
download
|
raw
|
embed
|
report abuse
|
print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
Remove duplicate record from MySQL result using LIKE clause?
$lname = $_POST["lname"];
$result = mysql_query("SELECT DISTINCT fname, lname, email FROM users WHERE lname LIKE '$lname%' ORDER BY lname ASC");
select distinct fname from users
create a
new version
of this paste
RAW Paste Data
Remove duplicate record from MySQL result using LIKE clause? $lname = $_POST["lname"]; $result = mysql_query("SELECT DISTINCT fname, lname, email FROM users WHERE lname LIKE '$lname%' ORDER BY lname ASC"); select distinct fname from users