Skip to content

Instantly share code, notes, and snippets.

@sqlparser
Created December 12, 2023 06:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sqlparser/fd94394aaa7ff6742d483598faeb2115 to your computer and use it in GitHub Desktop.
Save sqlparser/fd94394aaa7ff6742d483598faeb2115 to your computer and use it in GitHub Desktop.
Databricks Sample SQL
```sql
CREATE OR REPLACE VIEW experienced_employee
(id COMMENT 'Unique identification number', Name)
COMMENT 'View for experienced employees'
AS SELECT id, name
FROM all_employee
WHERE working_years > 5;
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment