OnlyCSharp Database Browser
A real relational engine running live at build time on OnlyCSharp.DataScience.Databases - an in-memory table created, seeded with five rows via INSERT, then queried with a filtered SELECT. Every cell below is what the SQL executor actually returned; nothing is canned. Authored in .razor markup.
Schema: employees
| Column | Type |
|---|---|
| id | Int |
| name | String |
| dept | String |
| salary | Int |
5 rows loaded into the table.
Query
SELECT name, dept, salary FROM employees WHERE dept = 'Engineering'
Result (3 rows)
| name | dept | salary |
|---|---|---|
| Ada Lovelace | Engineering | 145000 |
| Grace Hopper | Engineering | 138000 |
| Edsger Dijkstra | Engineering | 141000 |