Question

IIF([complnotsignd] Is Null, Nuli, DatePart(d, [complnotsignd])) AS Day1, IIF([complnotsignd] Is Null, Nuli, DatePart(m,[

Please convert this IIF statement to a Case statement in SQL format as quick as possible.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

CASE

WHEN [complnotsignd] IS NULL THEN NULL

ELSE DatePart('d', [complnotsignd])

END AS Day1,

CASE

WHEN [complnotsignd] IS NULL THEN NULL

ELSE DatePart('m', [complnotsignd])

END AS Month1,

CASE

WHEN [complnotsignd] IS NULL THEN NULL

ELSE DatePart('yyyy', [complnotsignd])

END AS Year1,

CASE

WHEN [complnotsignd] IS NULL THEN NULL

ELSE [Month1] & "/" & [Year1]

END AS [New Ops],

CASE

WHEN [New Ops] IS NULL THEN NULL

ELSE DateValue([New Ops])

END AS OPS

Add a comment
Know the answer?
Add Answer to:
Please convert this IIF statement to a Case statement in SQL format as quick as possible....
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • I am using Oracle SQL Live so please write the SQL Query in the format that...

    I am using Oracle SQL Live so please write the SQL Query in the format that Oracle SQL Live can run I need to create a trigger that will update the Product QoH when a new product is purchased. (A new product is purchased when a row is added to the line table). I have linked the code of the script since it exceed Chegg’s Character Limit: https://docs.google.com/document/d/1HbHnMrk6Qw99B72kpDyYCFibUJVsYEi-6RKDsmb3fg4/edit?usp=sharing

  • 1) Write or select the correct SQL statement that satisfies the following case: Change record with...

    1) Write or select the correct SQL statement that satisfies the following case: Change record with value 'Nick' to 'Cuba' for the 'Last Name' attribute in the table 'Vendors' A. UPDATE VENDORS SET LAST_NAME='CUBA' WHERE LAST_NAME=NICK B.INSERT INTO LAST_NAME VALUES("NICK"); C.INSERT INTO 'NICK' VALUES('VENDORS'); D. INSERT INTO VENDORS WHERE LAST_NAME="NICK" 2) Write or select the correct SQL statement that satisfies the following case: Change record with value 'Gary' to 'Jada' for the 'Style' attribute in the table 'Invoice_Line' A. INSERT...

  • Please follow the format that is given on the question sot, +F2), and-/is the R-F+, and...

    Please follow the format that is given on the question sot, +F2), and-/is the R-F+, and R 'is the (9) Suppose vector R is the resultant of two forces added together( resultant ofading a third force to R'-(,雨1,小す) Explain ow it is possible for the resultant R'to have a smaller magnitude than the magnitude of R. Note that a specific instance of this actually occurred in this lab, where the equilibrant for the 4-force case (part II) had a smaller...

  • database and sql problme THE QUESTIONS 3, 4,5 and 6 REFER TO THE RELATIONAL TABLES LISTED...

    database and sql problme THE QUESTIONS 3, 4,5 and 6 REFER TO THE RELATIONAL TABLES LISTED BELOW CREATE TABLE Department ( DECIMAL(5) VARCHAR(30) CHAR(5) DATE NOT NULL NOT NULL NOT NULL * Department number /*Department name * Department manager number */ /Manager start date DNumber DName Manager MSDate CONSTRAINT Department_PK PRIMARY KEY(DNumber) CONSTRAINT Department_CK UNIQUE(DName) CREATE TABLE DeptLocation DECIMAL(5) VARCHAR(50) NOT NULL NOT NULL DNumber * Department number */ * Department location */ Address CONSTRAINT DeptLocation_PK PRIMARY KEY(DNumber, Address) CONSTRAINT...

  • Please answer in half an hour!!!Thanks!!only need answer, please reply as quick as possible. Thankxx (I...

    Please answer in half an hour!!!Thanks!!only need answer, please reply as quick as possible. Thankxx (I will like your reply) 20. Which of the substances below is least soluble in water? A. CH2OHCHOHCH20H B. CH C. CHO,COH D. 21. Which substance(s) could be formed during the incomplete combustion of a hydrocarbon? 1. Carbon IL. Hydrogen III. Carbon monoxide A. I only B. I and II only C. 1 and IlI only D. Il and IIl only 22. What is the...

  • please complete the full question on the same format if possible, and please do it as...

    please complete the full question on the same format if possible, and please do it as soon as possible Following is a partially completed balance sheet for Hoeman Inc. at December 31, 2020, together with comparative data for the year ended December 31, 2019. From the statement of cash flows for the year ended December 31, 2020. you determine the following: • Net income for the year ended December 31, 2020, was $97.000 • Dividends paid during the year ended...

  • If possible please just send the SQL statement. Thank you Each question within deliverable 3 must begin on a new page and be sure to document the question as the title of each item at the top o...

    If possible please just send the SQL statement. Thank you Each question within deliverable 3 must begin on a new page and be sure to document the question as the title of each item at the top of each page. Also, using a 12-point font, include the SQL statement and then provide a screen shot of each query. The screen shots must include both the SQL statement and the results for each item below based on the data entered in...

  • In the processLineOfData, write the code to handle case "H" of the switch statement such that:...

    In the processLineOfData, write the code to handle case "H" of the switch statement such that: An HourlyEmployee object is created using the firstName, lastName, rate, and hours local variables. Notice that rate and hours need to be converted from String to double. You may use parseDouble method of the Double class as follows:               Double.parseDouble(rate) Call the parsePaychecks method in this class passing the HourlyEmployee object created in the previous step and the checks variable. Call the findDepartment method...

  • please complete only what is missing as soon as possible and please use the same format...

    please complete only what is missing as soon as possible and please use the same format Presented here are summarized data from the balance sheets and income statements of Wiper Ir WIPER INC. Condensed Balance Sheets December 31, 2020, 2019, 2018 (in millions) Current assets other assets Total assets Current liabi Long-term lia Stockholders' Total liabili 2020 $ 683 2,416 $3,099 $ 576 2019 $ 915 1,923 $2,838 $ 806 2018 S 763 1,722 $2,485 $ 713 851 921 $2,485...

  • Please Help in C#, Let me know if you have any questions. Please make sure the...

    Please Help in C#, Let me know if you have any questions. Please make sure the program passes the checks Checks: Question: My code works, it just this needs to be added there which I don't know what I need to do.    In order to prepend the $ to currency values, the program will need to use the CultureInfo.GetCultureInfo method. In order to do this, include the statement using System.Globalization; at the top of your program and format the output...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT