class CustomSqlLab extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

Employees Database

Table Rows Preview
employees 500
departments 10
salaries 500
SELECT id, name, department
FROM employees
WHERE department = 'Engineering'
ORDER BY name ASC
LIMIT 10;
Query Results
Click "Run Query" to see results
Results will appear here...
Sample Query:
-- Find all employees in Engineering department
`; setTimeout(() => { if (typeof feather !== 'undefined') { feather.replace(); } }, 100); } } customElements.define('custom-sql-lab', CustomSqlLab);