Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Display the first word after the street number in a supplier's street address. For example, for the supplier 1 Pine Apple St., the first work

Display the first word after the street number in a supplier's street address. For example, for the supplier "1 Pine Apple St.", the first work after the street number is "Pine". Show the suppliers street address and the first word after the street number. I have an example with using a different layout in my book but this is confusing to me

Street Address First word after street address
1 Pine Apple St Pine
123 International Blvd International
33 Beijin Square Beijin
1 Electronics Road Electronics
12 Camera St Camera

Excample SQL

Select CustomerName, Substring(CustomerName, Charindex('e', CustomerName)+1 Charindex('e', CustomerName, charindex('e', CustomerName)+1) -charindex('e', CustomerName)-1 ) AS "Characters between the two e"

From Sales.Customers

Where CustomerName LIKE '%e%e%';

I am not sure what to put in place of the 'e' for the Suppler address as shown in the above table. I just need a push here.

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

Relational Database Design A Practical Approach

Authors: Marilyn Campbell

1st Edition

1587193175, 978-1587193170

More Books

Students also viewed these Databases questions