Which SELECT statement should you use?

CORRECT TEXT
You have a database that contains the tables as shown below:

You have a stored procedure named Procedure1. Procedure1 retrieves all order ids after a specific
date. The rows for Procedure1 are not sorted. Procedure1 has a single parameter named
Parameter1. Parameter1 uses the varchar type and is configured to pass the specific date to
Procedure1. A database administrator discovers that OrderDate is not being compared correctly to
Parameter1 after the data type of the column is changed to datetime. You need to update the
SELECT statement to meet the following requirements:
The code must NOT use aliases.
The code must NOT use object delimiters.

The objects called in Procedure1 must be able to be resolved by all users.
OrderDate must be compared to Parameter1 after the data type of Parameter1 is changed to
datetime.
Which SELECT statement should you use?
To answer, type the correct code in the answer area.

CORRECT TEXT
You have a database that contains the tables as shown below:

You have a stored procedure named Procedure1. Procedure1 retrieves all order ids after a specific
date. The rows for Procedure1 are not sorted. Procedure1 has a single parameter named
Parameter1. Parameter1 uses the varchar type and is configured to pass the specific date to
Procedure1. A database administrator discovers that OrderDate is not being compared correctly to
Parameter1 after the data type of the column is changed to datetime. You need to update the
SELECT statement to meet the following requirements:
The code must NOT use aliases.
The code must NOT use object delimiters.

The objects called in Procedure1 must be able to be resolved by all users.
OrderDate must be compared to Parameter1 after the data type of Parameter1 is changed to
datetime.
Which SELECT statement should you use?
To answer, type the correct code in the answer area.

Answer: See the explanation

Explanation:
SELECT Orders.OrderID
FROM Orders
WHERE Orders.OrderDate>CONVERT(datetime,@Parameter1)



Leave a Reply 5

Your email address will not be published. Required fields are marked *


Jorik

Jorik

SELECT Orders.OrderID
FROM Orders
WHERE Orders.OrderDate > CONVERT(datetime,@Parameter1)

God

God

SELECT Orders.OrderID
FROM Orders
WHERE Orders.OrderDate > CONVERT(datetime,@Parameter1)

I_Hate_stupid_people

I_Hate_stupid_people

are you guys retarded ? why are you copying the answer here?

Branko

Branko

SELECT Orders.OrderID
FROM Orders
WHERE Orders.OrderDate > CONVERT(datetime,@Parameter1)

juja

juja

What about condition – “OrderDate must be compared to Parameter1 after the data type of Parameter1 is changed to datetime”?