KiwiHour
05/24/2023, 6:41 PMsql
SELECT name FROM table WHERE REPLACE(name, ' ', '') ILIKE 'kiwi%'
How can I reproduce the replace function this using the supabase JS/TS client?garyaustin
05/24/2023, 6:45 PM'kiwi%'
or ' kiwi%'
KiwiHour
05/24/2023, 6:48 PM