Numbers ending in 99 SQL

-2

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

    
asked by Dieguito Weed 08.11.2018 в 13:40
source

1 answer

1

Something like that

SELECT TABLA.PRECIOS AS PRECIOS
FROM TABLA 
WHERE TABLA.PRECIOS LIKE '%99'
    
answered by 08.11.2018 / 13:48
source