Hi there
,I am using the following statement to pull some data from the database:
My delema is that I don't want the rows 'where id = $rowID',
I want the rows 'where id != $rowID'.
I have searched through the forums and read through the documentation, but all I found was
information about 'larger than'('id-gt => $rowID') and 'less than'('id-lt => $rowID').
Sacrifice is not about what you lose,
it is about what you gain in the process.

Code:
my $sth = $DB->table('mytable')->select({owner => $USER->{Username}, id => $rowID } );My delema is that I don't want the rows 'where id = $rowID',
I want the rows 'where id != $rowID'.
I have searched through the forums and read through the documentation, but all I found was
information about 'larger than'('id-gt => $rowID') and 'less than'('id-lt => $rowID').
Sacrifice is not about what you lose,
it is about what you gain in the process.