I am trying to do a SELECT match on a table based upon an identifier and a price, such as:
SELECT
SELECT * FROM `table` WHERE `ident`=\'ident23\' AND `
Perhaps something along these lines:
SELECT * FROM table WHERE ident='ident23' AND ABS(price - 101.31) < .01;