단, 처음에 체험판 등록하면 300$ 제공
| Windows/Linux | Mac | Action |
|---|---|---|
| Ctrl + Space | Ctrl + Space | If no query is open: compose new query. If query editor is open: autocomplete current word. |
| Ctrl + Enter | Cmd + Enter | Run current query. |
| Tab | Tab | Autocomplete current word. |
| Ctrl | Cmd | Highlight table names. |
| Ctrl + click on table name | Cmd + click on table name | Open table schema. |
| Ctrl + E | Cmd + E | Run query from selection. |
| Ctrl + / | Cmd + / | Comment current or selected line(s). |
| Ctrl + Shift + F | Cmd + Shift + F | Format query. |
COMPOSE QUERY 클릭
#standardSQL
SELECT
weight_pounds, state, year, gestation_weeks
FROM
`bigquery-public-data.samples.natality`
ORDER BY weight_pounds DESC LIMIT 10;
In [ ]: