← Back to Tutorials

5. How to Access

Snowflake Web UI (Snowsight)

The modern web interface for querying, monitoring, and managing your account. Accessible at https://<account>.snowflakecomputing.com.

CLI (SnowSQL)

# Install SnowSQL
snowsql -a my_account -u my_user
snowsql> SELECT CURRENT_VERSION();

Drivers & Connectors

LanguageDriver
Pythonsnowflake-connector-python
Javasnowflake-jdbc
Node.jssnowflake-sdk

REST API & SDKs

Snowflake provides SQL REST API and SDKs for programmatic access.

✏️ Exercise: Install SnowSQL and connect to your Snowflake account. Run SELECT CURRENT_REGION(), CURRENT_ACCOUNT().