Skip to content
| Marketplace
Sign in
Visual Studio Code>Programming Languages>BigQuery SQL Language SupportNew to Visual Studio Code? Get it now.
BigQuery SQL Language Support

BigQuery SQL Language Support

dalbitresb12

|
540 installs
| (1) | Free
BigQuery SQL language support in Visual Studio Code (forked from SQL (BigQuery) by Shinichi Takii)
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

BigQuery SQL Language Support in Visual Studio Code

Syntax highlighting and code snippets for BigQuery SQL in Visual Studio Code.

Changes from upstream

This extension is a fork of the original extension SQL (BigQuery) by Shinichi Takii.

The following changes were made:

  • Renamed the language ID from sql-bigquery to bqsql.
    • This change was made to provide syntax highlight to BigQuery Driver for SQLTools, which together with SQLTools provide autocompletion and integration with BigQuery.
  • Added file icon to bqsql language.
  • Applied patch for highlight of table names with hyphens (shinichi-takii/vscode-language-sql-bigquery#49 by @alatani).
  • Renamed the extension to BigQuery SQL Language Support.
  • Bump to v2 due to the language ID change.

Recommended extensions and settings

  • SQLTools by Matheus Teixeira
  • BigQuery Driver for SQLTools by Evidence

Adding the following to your settings.json file in your workspace will enable the SQLTools extension to provide autocompletion, formatting and codelens in BigQuery SQL files:

{
  "sqltools.formatLanguages": [
    "sql",
    "bqsql"
  ],
  "sqltools.completionLanguages": [
    "sql",
    "bqsql"
  ],
  "sqltools.codelensLanguages": [
    "sql",
    "bqsql"
  ]
}

Features

  • Syntax highlighting for Google BigQuery SQL language.
  • Supports Standard SQL and Legacy SQL.
  • Detect and highlight Legacy SQL only functions.
  • Code snippets with SQL, DML, DDL, and Standard SQL functions.

Installation

  1. View > Extensions
  2. Search for BigQuery SQL Language Support
  3. Click the Install button

Usage

  1. View > Command Pallet > Change Language Mode (or Ctrl+Shift+L)
  2. Select to BigQuery SQL

Alternatively, if you are exclusively using BigQuery SQL, you can add the following to the settings.json file in your workspace:

{
  "files.associations": {
    "*.sql": "bqsql"
  }
}

License

MIT

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft