Our Services

Get 15% Discount on your First Order

[rank_math_breadcrumb]

sql

Class work


1. Create Customers

1. Create the following table

2. Please ensure that any previous table is dropped first to prevent any conflicts

3. Submit a screenshot of the table created as evidence of the customers table.

DROP TABLE CUSTOMERS;

CREATE TABLE CUSTOMERS

  CST_NUM             CHAR(4), 

  CST_NME_LST VARCHAR2(20), 

  CST_NME_FST VARCHAR2(20), 

  CST_EML      VARCHAR2(25), 

  CST_ADR      VARCHAR2(25), 

  CST_CTY   VARCHAR2(20), 

  CST_ST    CHAR(2), 

  CST_ZIP   CHAR(5), 

  CST_REF   NUMBER(4), 

  CST_REG   CHAR(2)  

);

2. Add Data to the Customers Table

1. Please add the following records to the customer table

2. Afterwards, submit a screenshot as evidence that the records have been populated to the table.

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1001′,’MORALES’,’BONITA’,’P.O.BOX 651′,’EASTPOINT’,’FL’,’32328′, NULL, ‘SE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1002’, ‘THOMPSON’, ‘RYAN’, ‘P.O. BOX 9835’, ‘SANTA MONICA’, ‘CA’, ‘90404’, NULL, ‘W’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1003’, ‘SMITH’, ‘LEILA’, ‘P.O. BOX 66’, ‘TALLAHASSEE’, ‘FL’, ‘32306’, NULL, ‘SE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1004’, ‘PIERSON’, ‘THOMAS’, ‘69821 SOUTH AVENUE’, ‘BOISE’, ‘ID’, ‘83707’, NULL, ‘NW’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1005’, ‘GIRARD’, ‘CINDY’, ‘P.O. BOX 851’, ‘SEATTLE’, ‘WA’, ‘98115’, NULL, ‘NW’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1006’, ‘CRUZ’, ‘MESHIA’, ’82 DIRT ROAD’, ‘ALBANY’, ‘NY’, ‘12211’, NULL, ‘NE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1007’, ‘GIANA’, ‘TAMMY’, ‘9153 MAIN STREET’, ‘AUSTIN’, ‘TX’, ‘78710’, ‘1003’, ‘SW’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1008’, ‘JONES’, ‘KENNETH’, ‘P.O. BOX 137’, ‘CHEYENNE’, ‘WY’, ‘82003’, NULL, ‘N’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1009’, ‘PEREZ’, ‘JORGE’, ‘P.O. BOX 8564’, ‘BURBANK’, ‘CA’, ‘91510’, ‘1003’, ‘W’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1010’, ‘LUCAS’, ‘JAKE’, ‘114 EAST SAVANNAH’, ‘ATLANTA’, ‘GA’, ‘30314’, NULL, ‘SE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1011’, ‘MCGOVERN’, ‘REESE’, ‘P.O. BOX 18’, ‘CHICAGO’, ‘IL’, ‘60606’, NULL, ‘N’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1012’, ‘MCKENZIE’, ‘WILLIAM’, ‘P.O. BOX 971’, ‘BOSTON’, ‘MA’, ‘02110’, NULL, ‘NE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1013’, ‘NGUYEN’, ‘NICHOLAS’, ‘357 WHITE EAGLE AVE.’, ‘CLERMONT’, ‘FL’, ‘34711’, ‘1006’, ‘SE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1014’, ‘LEE’, ‘JASMINE’, ‘P.O. BOX 2947’, ‘CODY’, ‘WY’, ‘82414’, NULL, ‘N’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1015’, ‘SCHELL’, ‘STEVE’, ‘P.O. BOX 677’, ‘MIAMI’, ‘FL’, ‘33111’, NULL, ‘SE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1016’, ‘DAUM’, ‘MICHELL’, ‘9851231 LONG ROAD’, ‘BURBANK’, ‘CA’, ‘91508’, ‘1010’, ‘W’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1017’, ‘NELSON’, ‘BECCA’, ‘P.O. BOX 563’, ‘KALMAZOO’, ‘MI’, ‘49006’, NULL, ‘N’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1018’, ‘MONTIASA’, ‘GREG’, ‘1008 GRAND AVENUE’, ‘MACON’, ‘GA’, ‘31206’, NULL, ‘SE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1019’, ‘SMITH’, ‘JENNIFER’, ‘P.O. BOX 1151’, ‘MORRISTOWN’, ‘NJ’, ‘07962’, ‘1003’, ‘NE’);

INSERT INTO CUSTOMERS (CST_NUM, CST_NME_LST, CST_NME_FST, CST_ADR, CST_CTY, CST_ST, CST_ZIP, CST_REF, CST_REG) 

   VALUES (‘1020’, ‘FALAH’, ‘KENNETH’, ‘P.O. BOX 335’, ‘TRENTON’, ‘NJ’, ‘08607’, NULL, ‘NE’);

3. Display the following Queries

1. 1.All records from the customer table.

2. 2.List of all customers in the state of Florida

3. 3.All customers that reside in zip code 82003

4. 4.All customers with the last name Smith

5. 5. List all customers who live in Miami

Share This Post

Email
WhatsApp
Facebook
Twitter
LinkedIn
Pinterest
Reddit

Order a Similar Paper and get 15% Discount on your First Order

Related Questions

CO Data 2

   In this homework, we explore both linear and logistic regression models. Linear Regression 1)  (20 points) Apply linear regression on both “diabetes” and “advertising” datasets and write a short paragraph about your findings.  2) (20 points) What is the linear regression model for each case? Logistic Regression 1) (30

Asign 2 of CG

Follow the attached instructions to complete this work. Guidance to follow I encourage you to build your project format following the requirements established in each project’s final step. I am going to give you the key to success. I am a fan of headings/subheadings in the final project that directly

Assign 2 of CG

Follow the attach information to complete this work. Make sure it aligns with the Rubric. Unit 2 Assignment Directions: Risk-Assessment Strategy Purpose In this assignment, you will detail the risk-assessment plan and strategy for your organization that you described in your discussion post. You have demonstrated that you understand their

How to Bulk Open MBOX File Windows and Mac?

The best way to bulk open MBOX file Windows and Mac without using any email client is through an expert solution such as BitRecover MBOX Viewer. It runs on both OS and is completely free of cost. The best thing is it is easy to use, has multiple selection modes,

Data unit 2 assign

Follow the attach instructions to complete this work State State Bird State Motto Year of Admission Alaska Willow ptarmigan North to the Future 1959 Texas Northern mockingbird Friendship 1845 California California quail Eureka 1850 Montana Western meadowlark Oro y Plata 1889 New Mexico Greater roadrunner Crescit Eundo 1912 Arizona Cactus

Finding …. Theme

Follow the attached instructions to complete this work. Unit 2 Assignment: Finding themes using a Page 1 dashboard Milligan Chapters 7, 8, and 11 Unit 2 Assignment: Finding themes using a dashboard Milligan Chapters 7, 8, and 11 In this assignment, you will learn how to combine individual visualizations to

Data V of D3

Follow the attach instructions to complete this work Deconstruction of an Advanced Dashboard: Trends and Improvements   Discussion Prompts · Does the dashboard designer use any of the trends that are described in Milligan’s Chapter 9? · If they did use those trends, state which one(s), and describe what they

DV D2

Follow the attached instructions to complete this work also find the previous work attach to it.  Deconstructions of an Advanced Dashboard: Dashboard Approach and Storytelling   Task There is a discussion you will need to participate in this unit. Select the button that follows to access the discussion thread.  You

CG 5

Follow the attached instructions to complete this work. In Unit 1, you analyzed the NIST 2.0 Framework and then compared it to the administration’s approach to cybersecurity. In Unit 2, you will look more specifically at what it means to establish a risk-assessment approach for an organization and how that

Computer Science Digital Image Analysis Assignment

Can anyone create me any one from the assignment doc 1. Real-Time Image Super-Resolution for Video Streams · Description: Develop a system to enhance the resolution of low-quality video streams in real-time using Super-Resolution GANs (SRGAN) or ESRGAN. · Challenge: Ensure temporal consistency across frames, avoid artifacts, and maintain real-time

D1 of data

Follow the attached instructions to complete this work in an hour. Unit 1 Discussion: Deconstruction of an Advanced Dashboard: Identification of Purpose and Visualizations   Task 1. Go to  Viz of the Day 2. This website is hosted by Tableau Public, and new visualizations are posted daily. 3. Select one

D1 of Cg

Follow the attached instruction to complete this discussion Directions 1. Initial post: Respecting user privacy and ensuring data integrity are important ethical requirements of a CISO. They are requirements reflected in the internal governance approach to writing policies on how to manage access and control over data. You may add

Cyber 1

Follow the attach instructions to complete this work. Make sure it Aligns with Rubric. Unit 1 Assignment Directions: Administration Approach to Cybersecurity Purpose Write a 5-page paper analyzing 2023’s  National Cybersecurity Strategy Implementation Plan (NCSIP), which supports the NCS 2023, the Biden Administration’s approach to cybersecurity. Keep in mind that NIST

How to Convert OST files to PST?

Convert OST to PST using Shoviv OST to PST Converter (in steps): · Install and open OST to PST Converter tool · Add OST files you want to convert · Choose PST as the saving format · Select destination folder · Click Export to start conversion The tool converts OST

GainTools MBOX to PST Converter

GainTools MBOX to PST Converter is a powerful and easy-to-use program that can change MBOX files into PST files with 100% accuracy. It can convert several MBOX files at once, keeps the layout and attachments of the emails, and works with all major MBOX email clients. This makes it quick,

windowslivemailconverter

 <!–td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}–> The best choice for the users is eSoftTools Windows Live Mail Converter software. It allows the users to convert their Live Mail profile emails into multiple formats as well as export Windows Live Mail emails to 8+ conversion and different cloud mail apps. It

Final CIS Project

 Scenario: A robot is sitting in a chair with its arms facing down. Write an algorithm, using pseudocode, to make the robot: 

What features define a successful AI Chatbot Development Company?

A successful AI Chatbot Development Company is defined by its ability to deliver intelligent, scalable, and user-friendly chatbot solutions powered by advanced AI and NLP. Key features include seamless integration, contextual conversation handling, real-time analytics, and enterprise-grade security—essential for enhancing customer support, boosting engagement, and automating workflows across diverse business