update table names

This commit is contained in:
filifa 2024-08-03 17:35:08 -05:00
parent 4655a83891
commit a69b02c712
4 changed files with 6 additions and 6 deletions

View File

@ -43,4 +43,4 @@ fi
# grab select data from response with jq, add 0 to the end of each line (to go
# in the 'posted' db column), then write each line to db
jqFilter='.highlights.highlights.items | map(select(.keywordsAll[].value == "highlight"))[] | {headline, id} + {url: (.playbacks | map(select(.name == "mp4Avc"))[0].url)} | select(.url | startswith("https://mlb-cuts-diamond"))'
mlblive content -g $gamePk | jq -Sc "$jqFilter" | sed 's/$/0/' | sqlite3 $db '.mode ascii' '.separator  \n' '.import /dev/stdin mlbdata'
mlblive content -g $gamePk | jq -Sc "$jqFilter" | sed 's/$/0/' | sqlite3 $db '.mode ascii' '.separator  \n' '.import /dev/stdin highlights'

View File

@ -42,7 +42,7 @@ fi
jqFilter='{gamePk} + (.gameData.teams | {awayTeam: .away.teamName, homeTeam: .home.teamName}) + (.liveData.plays.allPlays[] | (.result + (.about | {atBatIndex, halfInning, inning, isComplete, isScoringPlay, hasReview})))'
fmt='OFS=""; print $0, 0'
save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin mlbdata'\""
save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin plays'\""
# grab select data from each response with jq, add 0 to the end of each line
# (to go in the 'posted' db column), then write each line as they come in to db

View File

@ -5,12 +5,12 @@ select
json ->> 'headline',
json ->> 'id',
json ->> 'url'
from mlbdata
from highlights
where
json ->> 'url' is not null and
posted = 0;
update mlbdata
update highlights
set posted = 1
where posted = 0;
commit;

View File

@ -9,13 +9,13 @@ json ->> 'awayTeam',
json ->> 'awayScore',
json ->> 'homeTeam',
json ->> 'homeScore'
from mlbdata
from plays
where
json ->> 'description' is not null and
json ->> 'isScoringPlay' = 1 and
posted = 0;
update mlbdata
update plays
set posted = 1
where posted = 0;
commit;