Assignment Question
TOPIC: FASTFOOD Restaurant Management Objective: Apply SQL concepts to create a functional database appropriate for a small business/hobby.
Part 1: Create Table diagram from ERD – The database will have between 5 and 7 related entities.
Part 2: Write and run scripts to create tables and define constraints. – All tables will have PK/FK defined Part 3: Insert sample data – At least 5 records should exist in each table.
Part 4: Test database
Part 5: Write questions and answer queries to exercise each one of the following concepts: Sorting data and Restricting Rows (Ch 8) Joining Data (Ch 9) Single-row functions (Ch 10) Group functions (Ch 11) Subqueries (Ch 12) Part 6: Prepare final project presentation PowerPoint
Part 7: Present your Final Project (5-7 minutes) Present your business and the ER diagram, explain relationships between tables and all constraints.
Part 8: Turn in the project, include ER diagram, the presentation and script to create the DB and the queries from Part 5 Book: http://www.cherrycreekeducation.com/bbk/b/Cengage_Learning_Oracle_12c_SQL_3rd_Edition_1305251032.pdf
Last Completed Projects
| topic title | academic level | Writer | delivered |
|---|
jQuery(document).ready(function($) { var currentPage = 1; // Initialize current page
function reloadLatestPosts() { // Perform AJAX request $.ajax({ url: lpr_ajax.ajax_url, type: 'post', data: { action: 'lpr_get_latest_posts', paged: currentPage // Send current page number to server }, success: function(response) { // Clear existing content of the container $('#lpr-posts-container').empty();
// Append new posts and fade in $('#lpr-posts-container').append(response).hide().fadeIn('slow');
// Increment current page for next pagination currentPage++; }, error: function(xhr, status, error) { console.error('AJAX request error:', error); } }); }
// Initially load latest posts reloadLatestPosts();
// Example of subsequent reloads setInterval(function() { reloadLatestPosts(); }, 7000); // Reload every 7 seconds });

