find/replaces spaces so hashtags work better

This commit is contained in:
filifa 2024-08-20 20:23:27 -05:00
parent 72aa69088a
commit 120604c131
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ select
json ->> 'description',
json ->> 'halfInning',
json ->> 'inning',
json ->> 'awayTeam',
replace(json ->> 'awayTeam', ' ', ''),
json ->> 'awayScore',
json ->> 'homeTeam',
replace(json ->> 'homeTeam', ' ', ''),
json ->> 'homeScore'
from plays
where