DryORM
Code
Result
no cache
SQLite
PostgreSQL 17.4
MariaDB 11.4.5
Select a template
dryorm features
basic
bulk create
bulk fake
csv import
basic fk
self fk
user profile
dryorm tabular output
from django.db import models class Person(models.Model): name = models.CharField(max_length=100) def run(): """ 1) Create two models Customer(name) and Order(customer, created_at, amount) 2) Fill in some sample data 3) List the customers and their total revenue sorted by highest 4) List the customers with no orders in 2024 5) For each customer, show most recent order date and order amount """ instance = Person.objects.create(name='John Doe') print(f'Created: {instance}')
Output
Show Template
No output.
Queries
TCL
T
DDL
D
SELECT
S
INSERT
I
UPDATE
U
DELETE
D
Queries
Q
(
0
)
No queries.
✖ Close
Save & Share
✖
private?
Save
Save & Copy