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

ColumnType
idInt
nameString
deptString
salaryInt

5 rows loaded into the table.

Query

SELECT name, dept, salary FROM employees WHERE dept = 'Engineering'

Result (3 rows)

namedeptsalary
Ada LovelaceEngineering145000
Grace HopperEngineering138000
Edsger DijkstraEngineering141000