Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

TRANSACT - SQL: Assume we have database EntertainmentAgencyExample with the following tables: And here is the info regarding the table we need: I need to

TRANSACT - SQL:

Assume we have database EntertainmentAgencyExample with the following tables:

image text in transcribed

And here is the info regarding the table we need:

image text in transcribed

I need to do this query:

Show me any engagements in October 2017 that start between noon and 5 p.m.

My code is:

SELECT EngagementNumber, StartDate, EndDate, StartTime, StopTime FROM Engagements WHERE (StartDate = '2017-10-01') AND (StartTime >= '12.00' and StopTime

Microsoft SQL Server outputs the following mistake: Conversion failed when converting date and/or time from character string.

I tried to cast it but without big success. Thanks for your help.

EntertainmentAgency Example Database Diagrams Tables System Tables File Tables External Tables Graph Tables dbo.Agents dbo.Customers dbo.Engagements dbo.Entertainer_Memb. dbo.Entertainer_Styles dbo.Entertainers dbo. Members dbo.Musical_Preference dbo.Musical_Styles dbo.ztblDays dbo.ztb Months dbo.ztblSkipLabels dbo.ztblWeeks /****** Script for SelectTopNRows command from SSMS ******/ SELECT TOP (1000) [Engagement Number] [StartDate] [EndDate] [StartTime] [StopTime] [ContractPrice] [CustomerID) [AgentID] [EntertainerID] FROM [EntertainmentAgencyExample] . [dbo] - [Engagements]

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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