subject

Hello I am super stuck with these questions if anyone can help me that would be great. The lab is asking to create the answer using SQL. PRINT 'CIS 275, Lab Week 2, Question 8 [3pts possible]:Rick and MortyShow a distinct list of all Rick and Morty episodes in the SHOW table. Include the following columns:Title - 20 wide. Episode - 20 wide. Series # - 10 wide. Episode # - 3 wide. Original Air Date - 12 wide, formatted as, for example, "Apr 01, 2017".Display results in order by episode number. Correct results will look like this:Title Episode Series # Episode # Original Air Date Rick and Morty The Rickshank Rickde EP01833673 301 Apr 01, 2017Rick and Morty Rickmancing the Ston EP01833673 302 Jul 30, 2017Rick and Morty Pickle Rick EP01833673 303 Aug 06, 2017Rick and Morty Vindicators 3: The R EP01833673 304 Aug 13, 2017Rick and Morty The Whirly Dirly Con EP01833673 305 Aug 20, 2017Rick and Morty Rest and Ricklaxatio EP01833673 306 Aug 27, 2017Rick and Morty The Ricklantis Mixup EP01833673 307 Sep 10, 2017' + CHAR(10)GO [Insert your code here]--GOPRINT 'CIS 275, Lab Week 2, Question 9 [3pts possible]:Couch Potato AchievementProduce a list of the 10 longest shows. Exclude sports-related genres and shows where the titleis "To Be Announced" or "SIGN OFF". Format your results to look like this:Channel Name Title Episode Date Time Length BBCAPH Doctor Who Deep Breath Sep 08, 2017 04:30:00 - 12:30:00 08:00:00BBCAPH Doctor Who Deep Breath Sep 08, 2017 12:30:00 - 20:30:00 08:00:00BBCAPH Doctor Who Deep Breath Sep 08, 2017 20:30:00 - 04:30:00 08:00:00CSPAN2 Public Affairs Event N/A Sep 08, 2017 21:00:00 - 05:00:00 08:00:00CSPAN2 Book TV N/A Sep 10, 2017 10:00:00 - 18:00:00 08:00:00BBCAP Doctor Who Deep Breath Sep 08, 2017 04:30:00 - 12:30:00 08:00:00BBCAP Doctor Who Deep Breath Sep 08, 2017 12:30:00 - 20:30:00 08:00:00BBCAP Doctor Who Deep Breath Sep 08, 2017 20:30:00 - 04:30:00 08:00:00TVMRT Beyond Today N/A Sep 03, 2017 19:30:00 - 03:30:00 08:00:00TVMRT Beyond Today N/A Sep 04, 2017 03:30:00 - 11:30:00 08:00:00Hint: Use ISNULL to display NULL values in Episode as N/A, and restrict them to no more than 20characters wide.' + CHAR(10)GO [Insert your code here]--GOPRINT 'CIS 275, Lab Week 2, Question 10 [3pts possible]:It''s a Good LifeFind all showings of The Twilight Zone episode "It''s a Good Life." Format your results exactlyas they appear below. Hint: You can convert the same DATETIME twice, using two different format codes, and concatenate theresults together into a single string. Correct output will look like this (only two columns):Channel Name Time SYFYP Sep 15, 2017: 06:00:00 - 06:30:00SYFYHDP Sep 15, 2017: 06:00:00 - 06:30:00SYFYP Sep 16, 2017: 05:00:00 - 05:30:00SYFYHDP Sep 16, 2017: 05:00:00 - 05:30:00' + CHAR(10)GO [Insert your code here]--GO

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 22:00
Which of the following statements correctly identifies a problem with sanitization methods? a. methods are not available to remove data ensuring that unauthorized personnel cannot retrieve data.b. even fully incinerated media can offer extractable data.c. personnel can perform sanitization steps improperly.d. stored data is physically etched into the media.
Answers: 1
question
Computers and Technology, 22.06.2019 13:00
We as humans write math expression in infix notation, e.g. 5 + 2 (the operators are written in-between the operands). in a computer’s language, however, it is preferred to have the operators on the right side of the operands, i.e. 5 2 +. for more complex expressions that include parenthesis and multiple operators, a compiler has to convert the expression into postfix first and then evaluate the resulting postfix.write a program that takes an “infix” expression as input, uses stacks to convert it into postfix expression, and finally evaluates it. it must support the following operations: + - / * ^ % (example infix expression: (7 - 3) / (2 + 2)postfix expression: 7 3 - 2 2 + /result: 1guidelines: 1. you will need to use stacks in three placesa. one for the parenthesis check [char stack]b. one during infix to postfix [char stack]c. one during evaluation [int stack]for a and b above, you can use same array and same push, pop method as both ofthem are char. but for evaluation you have int stack and you might consider to createanother push pop method to handle it. maybe push_int, pop_int, etc. or find otherstrategy to utilize existing push pop method2. you can create a function for obtaining operator priority. that function should take anoperator as input and return its priority as an integer. this function will you a lot andreduce repeated code3. during evaluation you will need to convert char into integer. example for single digit: char c = '5'; int x = c - '0';
Answers: 2
question
Computers and Technology, 24.06.2019 10:00
(, urgent need): how do i change my username
Answers: 1
question
Computers and Technology, 24.06.2019 12:00
How can we take picture in this app
Answers: 1
You know the right answer?
Hello I am super stuck with these questions if anyone can help me that would be great. The lab is as...
Questions
question
Mathematics, 02.08.2019 08:30
Questions on the website: 13722360