Hello good morning community! I wanted to ask you how I can get from a table (for example a price column) all the numbers that end in "99" any ideas? Thanks
Hello good morning community! I wanted to ask you how I can get from a table (for example a price column) all the numbers that end in "99" any ideas? Thanks
Something like that
SELECT TABLA.PRECIOS AS PRECIOS
FROM TABLA
WHERE TABLA.PRECIOS LIKE '%99'