User Feedback Collection Database
📖 Scenario: You are building a simple database to collect user feedback for a website. This database will store user names, their email addresses, and their feedback messages.
🎯 Goal: Create a database table to store user feedback with fields for user name, email, and feedback message. Then, configure a status field to track if feedback is reviewed. Finally, write a query to select all unreviewed feedback and mark them as reviewed.
📋 What You'll Learn
Create a table called
feedback with columns username (text), email (text), and message (text).Add a column
status (text) to track if feedback is 'new' or 'reviewed'.Write a query to select all feedback where
status is 'new'.Write a query to update the
status of selected feedback to 'reviewed'.💡 Why This Matters
🌍 Real World
Collecting and managing user feedback is essential for improving websites and services. This project simulates a simple feedback database.
💼 Career
Database skills like creating tables and writing queries are fundamental for roles in data management, customer support systems, and web development.
Progress0 / 4 steps