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
query3_base = """SELECT
TOP 10
{columns}
FROM gaiadr2.gaia_source
WHERE parallax < 1
AND bp_rp BETWEEN -0.75 AND 2
"""
query3 = query3_base.format(columns)
Can be combined into the single statement:
query3 = f"""SELECT
TOP 10
{columns}
FROM gaiadr2.gaia_source
WHERE parallax < 1
AND bp_rp BETWEEN -0.75 AND 2
"""
And columns will automatically be filled in
Which part of the content does your suggestion apply to?
No response
The text was updated successfully, but these errors were encountered:
How could the content be improved?
For examples:
Can be combined into the single statement:
And columns will automatically be filled in
Which part of the content does your suggestion apply to?
No response
The text was updated successfully, but these errors were encountered: