New Arrivals task solution help request | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
+ 1

New Arrivals task solution help request

You are working with the library books database. The Books table has the columns id, name, year. The library has new books whose information is stored in another table called "New", however they do not have a year column. Write a query to select the books from both tables, Books and New, combining their data. For the year column of the New books use the value 2022. Also, select only the books that are released after the year 1900. The result set should contain the name and year columns only, ordered by the name column alphabetically.

23rd Dec 2023, 12:26 PM
Dariusz Jenek
Dariusz Jenek - avatar
22 Respuestas
+ 4
Dariusz Jenek , your post is not complete: > please add the programming language to the tags. > do a try by yourself and show your code here, so that people can see what your issue is. > if your question refers to a sololearn tutorial, please mention the tutorial and modul name, also the lesson name.
23rd Dec 2023, 1:53 PM
Lothar
Lothar - avatar
23rd Dec 2023, 1:57 PM
Stefanoo
Stefanoo - avatar
+ 2
The task ask you to... The result set should contain the name and year columns only, ordered by the name column alphabetically. In other words, the result has 2 columns, but your solutions only return 1 column.
24th Dec 2023, 12:55 PM
Wong Hei Ming
Wong Hei Ming - avatar
+ 1
Please add "SQL" in the tag so we know which language we are talking. I believe it is the intermediate course, under UNION section. Please post your code so we can help you better.
23rd Dec 2023, 3:52 PM
Wong Hei Ming
Wong Hei Ming - avatar
+ 1
SELECT name FROM Books UNION SELECT year FROM New WHERE year > 1900;
24th Dec 2023, 11:38 AM
Dariusz Jenek
Dariusz Jenek - avatar
+ 1
Maybe you should re-read page 6 and the provided code for inspiration.
26th Dec 2023, 9:55 AM
Wong Hei Ming
Wong Hei Ming - avatar
+ 1
Let's get to the basic. The expected output contains TWO columns (you can see the final result since it is not locked). Because UNION is use to combine two SQL statements, let's take a look on your first part of your SQL. SELECT name FROM New Only one field is selected... Second part SELECT CAST(year AS VARCHAR) FROM Books WHERE year > 1900 ORDER BY name ASC It also select one field only. The first hint: make your SQL select TWO fields Another hint. Writing SQL in one-liner is bad, difficult to read and debug. I prefer this writing style when writing UNION. SELECT something FROM somewhere UNION SELECT something FROM somewhere It is find to write like this when the it is short, but more filed you selected (imagine there are 20 fields), it will get more difficult to debug. SELECT something FROM somewhere UNION SELECT something FROM somewhere
26th Dec 2023, 11:02 AM
Wong Hei Ming
Wong Hei Ming - avatar
+ 1
Re-read page 6 AND change the code. If you need more hint... Change NULL to something else
26th Dec 2023, 12:25 PM
Wong Hei Ming
Wong Hei Ming - avatar
+ 1
You are getting close. This time re-read page 6 again. Not the code but the hint at the bottom.
26th Dec 2023, 4:50 PM
Wong Hei Ming
Wong Hei Ming - avatar
+ 1
As the hint says... We can also use other 'constant' values for the extra columns.
27th Dec 2023, 7:14 AM
Wong Hei Ming
Wong Hei Ming - avatar
0
SELECT name FROM Books UNION SELECT year FROM New WHERE year > 1900;
24th Dec 2023, 11:39 AM
Dariusz Jenek
Dariusz Jenek - avatar
0
My wrong solution: <sql>SELECT name FROM Books WHERE year > 1900 UNION SELECT CAST(year AS VARCHAR) AS VARCHAR FROM Books ORDER BY name ASC</sql>
26th Dec 2023, 9:43 AM
Dariusz Jenek
Dariusz Jenek - avatar
0
Could You help me, please? I do really not know how to do it...
26th Dec 2023, 9:45 AM
Dariusz Jenek
Dariusz Jenek - avatar
0
Any further hints and tips, please?
26th Dec 2023, 10:31 AM
Dariusz Jenek
Dariusz Jenek - avatar
0
SELECT name FROM New UNION SELECT CAST(year AS VARCHAR) FROM Books WHERE year > 1900 ORDER BY name ASC? I do not know...
26th Dec 2023, 10:33 AM
Dariusz Jenek
Dariusz Jenek - avatar
0
"For the year column of the New books use the value 2022." I do not know and understand this sentence. What does it mean? How to do it?
26th Dec 2023, 11:37 AM
Dariusz Jenek
Dariusz Jenek - avatar
0
SELECT name, (2002 AS year) FROM New UNION SELECT name, year FROM Books WHERE year > 1900 ORDER BY name ASC For the year column of the New books use the value 2022. How to do it?
26th Dec 2023, 4:47 PM
Dariusz Jenek
Dariusz Jenek - avatar
0
Should I change data type of '2022' in the SELECT clause? For wghat data type?
27th Dec 2023, 7:07 AM
Dariusz Jenek
Dariusz Jenek - avatar
0
correct code is SELECT name, year FROM ( SELECT name, year FROM Books WHERE year > 1900 UNION ALL SELECT name, 2022 AS year FROM New ) AS CombinedBooks ORDER BY name ASC;
19th Jan 2024, 4:17 AM
Maysa Jumayeva
Maysa Jumayeva - avatar
0
Considering it is an SQL question, here is the possible solution: SELECT name, CASE WHEN year is not null THEN year ELSE 2022 END as year from ( SELECT name, year from Books UNION SELECT name, null as year from New) AS new_table WHERE COALESCE ( year, 2022) > 1900 ORDER BY name;
8th Feb 2024, 6:41 PM
Shubham Karjee
Shubham Karjee - avatar