You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to have a way to export drafts that have been made here. If the functionality already exists, I apologize.
If we're going from SQL data, what I'm looking for is something like this, potentially configurable:
SELECT
p.`first_name`,
m.`manager_name`,
dc.`position`,
p.`player_round` AS DraftRound,
p.`player_pick`AS OverallPick
FROM
`players` p
LEFT JOIN
`managers` m
ON p.`manager_id` = m.`manager_id`
LEFT JOIN
`depth_chart_positions` dc
ON p.`depth_chart_position_id` = dc.`id`
WHERE
p.`draft_id` = (draft that was completed)
Maybe output as plain CSV text or provide the option for JSON output?
Just a thought.
The text was updated successfully, but these errors were encountered:
Certainly possible. I've put exporting on the backburner for years just because I never thought it was a priority for anyone. Is it easier to use a CSV or spreadsheet to enter draft results?
This is something I can probably add to the next release fairly easily.
It would be nice to have a way to export drafts that have been made here. If the functionality already exists, I apologize.
If we're going from SQL data, what I'm looking for is something like this, potentially configurable:
Maybe output as plain CSV text or provide the option for JSON output?
Just a thought.
The text was updated successfully, but these errors were encountered: