Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

State SQL query to satisfy the requirements below: Include the following columns: First Name Last Name Return all rows from the people table where

State SQL query to satisfy the requirements below:

  
  • Include the following columns:
    • First Name
    • Last Name
  • Return all rows from the people table where the person's last name is between B and H.
  • Use the LEFT function in the where statement.

Query


____

first_name AS ____ , last_name AS ___

______

_______

WHERE

____(last_name, ____) ____ 'B' AND 'H'


Requirements

  
  • Include the following columns:
    • First Name
    • Last Name
    • Personal Email Address
    • Cambrian Email Address
  • Return all rows from the people table.
  • The personal email address column should be the email address stored in the people table.
  • The email address column should be created using a combination of the person's first name and last name.Use the following format:
    • The person's first name, a period, and their last name @hotpapa.ca
    • Example:Nathan Abourbih's email address would be n..h@hotpapa.ca
  • Ensure that email addresses will never contain any uppercase characters.

Query

SELECT

______ AS ____ , last_name AS 'Last Name' , _____AS 'Personal Email Address' , _____(CONCAT(first_name, _____, _____, '@hotpapa.ca')) AS 'Cambrian Email Address'

_______

people

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Income Tax Fundamentals 2013

Authors: Gerald E. Whittenburg, Martha Altus Buller, Steven L Gill

31st Edition

1111972516, 978-1285586618, 1285586611, 978-1285613109, 978-1111972516

More Books

Students also viewed these Databases questions

Question

Explain the goal of behavior therapy.

Answered: 1 week ago