Project description
Lab 4: SQL Query on a Single Table
Assignment: Using the VLABS environment, log into SQL SERVER and use the tables IST210-WC schema with the prefix of UC, and perform the following queries:
Use the NULL keyword to display the s_id and c_sec_id for records that have no value for the field grade from the table uc_enrollment.
Display the s_id, s_last, s_first, s_phone for students whose faculty advisor is faculty number 1.
Display course_id, sec_num, and maximum enrollment for courses where the maximum enrollment is in the 35 to 100 range from the uc_course_section table sorted in descending order by maximum rollment value.
Display faculty id, first name and last name when the faculty last name contains a letter w (upper or lower case) anywhere in the last name.
Display the number (tally) of faculty members who have the rank of associate professor?
Display the minimum, maximum and average available seats in a section for courses in term_id 5.
Be sure to review the Entity Relationship Diagram (ERD) that you prepared in Lab # 1.
Please capture the SQL commands and the execution of the SQL commands in a Microsoft Word document by using the copy and paste feature of windows.
I WILL ATTACH LAB #1 wait for it!
———-
Added on 19.10.2016 14:50
Lab #3
Instruction files
1522969_lab_3.docx(81,92 KiB)
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 });

