I do a select statement and get say 10 results/rows...
How could I omit displaying the FIRST record of the result set?
I ask because I am already displaying that 'latest' record elsewhere on the page.
$row = mysql_fetch_row($q); while($row = mysql_fetch_row($q)){ ... }
As far as I know, this is the only way, but I'm still not exactly a pro at SQL.
SELECT .... LIMIT 1,18446744073709551615 Assuming you're using MySQL.
MS SQL Server doesn't have LIMIT - it has something else (which escapes me for the moment).
PostgreSQL offers SELECT ... OFFSET 1
tsk, tsk, Weedpacket. Your spelling errors are atrocious!
It's clearly spelled: R T F M
It's ok... I know you're getting old.