Skip to main content

Command Palette

Search for a command to run...

Simple Practice CRUD with 7 case studies

Updated
3 min read

First open and login to database

Guest Book

  • Problem context : Classes often have visitors (parents, alumni, stationery suppliers). It's important to note who's coming, what they need, and their contact information—so you can easily follow up.

  • Main Flow :

    1. Guests arrive → are recorded.

    2. The homeroom teacher reviews today's guest list.

    3. If there are any typos, correct them.

    4. Invalid entries → delete them.

  • solution

    1. Create table

    2. Insert data into table

    3. see the result

    4. update and delete data

Daily Activity Agenda

  • Problem Context: Lots of activities: on duty, studying, sports, competitions. I often forget the time and who's in charge. Keep a simple daily agenda.

  • Main Flow: Create agenda → view today's list → mark status as complete → correct/delete if necessary.

  • Solution

    1. Create table and insert data into table

    2. update and delete data

Contact List

  • Problem Context: Likely to lose friends/parents/dormitor numbers. Create a simple contact book.

  • Main Flow: Add contact → search contact → update number → delete duplicate.

  • Solution

    1. Create Table

    2. Insert data into table

    3. see the results

    4. update and delete data

Daily Memorization Notes

  • Problem Context: Students need to record their memorization notes so that they can see their progress day by day.

  • Main Flow: Record deposits → see weekly recap → correct if wrong.

  • Solution

    1. Create table

    2. Insert data into table

    3. See the results

    4. Update and Delete data

Personal Savings Notes

  • Problem Context: Students want to keep track of small savings (pocket money). A simple in/out transaction table.

  • Main Flow: Record income/expenses → see the final balance → correct if there are any wrong numbers.

  • Solution:

    1. Create table

    2. Insert Data Into table, and see the remaining money results

    3. Update and Delete data

t

Classroom Item Loan (Simple Log)

“This single-table version is just a log, not a full inventory system. It's enough to know who borrowed what today.“

  • Problem Context: The class has equipment (balls, markers, speakers). They're often borrowed but I forget who brought them.

  • Main Flow: Record borrowing → when returned, update the return column → active borrowing list.

  • Solution:

    1. Create Table

    2. Insert data into table

    3. Update and Delete data

Simple Assignments/Quizzes (Grade Per Assignment)

Not a report card system; simply record the grade for one assignment/quiz per line.

  • Problem Context: Teachers want a quick recap of daily quiz scores without the hassle of lots of tables.

  • Main Flow: Input value → see today's ranking → correct value if written incorrectly.

  • Solution

    1. Create Table Insert data into table

    2. Update and Delete Data

ERRORS

  • My error just because of typos and use the ‘

    Follow me for more practice

A
ahmad8mo ago

AKU MENUNGGU HAL INI

More from this blog

The Digital Alchemist's Log

21 posts