मराठी

NCERT solutions for Computer Science [English] Class 12 chapter 9 - Structured Query Language (SQL) [Latest edition]

Advertisements

Chapters

NCERT solutions for Computer Science [English] Class 12 chapter 9 - Structured Query Language (SQL) - Shaalaa.com
Advertisements

Solutions for Chapter 9: Structured Query Language (SQL)

Below listed, you can find solutions for Chapter 9 of CBSE NCERT for Computer Science [English] Class 12.


Exercise
Exercise [Pages 176 - 180]

NCERT solutions for Computer Science [English] Class 12 9 Structured Query Language (SQL) Exercise [Pages 176 - 180]

Answer the following questions:

Exercise | Q 1. a) | Page 176

Define RDBMS. Name any two RDBMS software.

Exercise | Q 1. b) i) | Page 176

What is the purpose of the following clause in a select statement?

ORDER BY

Exercise | Q 1. b) ii) | Page 176

What is the purpose of the following clause in a select statement?

GROUP BY

Exercise | Q 1. c) | Page 176

Site any two differences between Single Row Functions and Aggregate Functions.

Exercise | Q 1. d) | Page 176

What do you understand by Cartesian Product?

Exercise | Q 1. e) i) | Page 177

Differentiate between the following statement:

ALTER and UPDATE

Exercise | Q 1. e) ii) | Page 177

Differentiate between the following statement:

DELETE and DROP

Exercise | Q 1. f) i) | Page 177

Write the name of the functions to perform the following operation:

To display the day like “Monday”, and “Tuesday”, from the date when India got independence.

Exercise | Q 1. f) ii) | Page 177

Write the name of the functions to perform the following operation:

To display the specified number of characters from a particular position of the given string.

Exercise | Q 1. f) iii) | Page 177

Write the name of the functions to perform the following operation:

To display the name of the month in which you were born.

Exercise | Q 1. f) iv) | Page 177

Write the name of the functions to perform the following operation:

To display your name in capital letters.

Exercise | Q 2. a) | Page 177

Write the output produced by the following SQL statement:

SELECT POW(2, 3);

Exercise | Q 2. b) | Page 177

Write the output produced by the following SQL statement:

SELECT ROUND(342.9234, -1);

Exercise | Q 2. c) | Page 177

Write the output produced by the following SQL statement:

SELECT LENGTH("Informatics Practices");

Exercise | Q 2. d) | Page 177

Write the output produced by the following SQL statement:

SELECT    YEAR(“1979/11/26”),
MONTH(“1979/11/26”),    DAY(“1979/11/26”), MONTHNAME(“1979/11/26”);

Exercise | Q 2. e) | Page 177

Write the output produced by the following SQL statement:

SELECT    LEFT("INDIA", 3),    RIGHT("Computer Science", 4),    MID("Informatics", 3, 4), SUBSTR("Practices", 3);

Exercise | Q 3. | Page 177

Consider the following MOVIE table and write the SQL query based on it.

MovieID MovieName Category ReleaseDate ProductionCost BusinessCost
001 Hindi_Movie Musical 2018-04-23 124500 130000
002 Tamil_Movie Action 2016-05-17 112000 118000
003 English_Movie Horror 2017-08-06 245000 360000
004 Bengali_Movie Adventure 2017-01-04 72000 100000
005 Telugu_Movie Action - 100000 -
006 Punjabi_Movie Comedy - 30500 -
  1. Display all the information from the Movie table.
  2. List business is done by the movies showing only MovieID, MovieName, and Total_Earning. Total_ Earning to be calculated as the sum of ProductionCost and BusinessCost.
  3. List the different categories of movies.
  4. Find the net profit of each movie showing its MovieID, MovieName, and NetProfit. Net Profit is to be calculated as the difference between Business Cost and Production Cost.
  5. List MovieID, MovieName, and Cost for all movies with ProductionCost greater than 10,000 and less than 1,00,000.
  6. List details of all movies which fall in the category of comedy or action.
  7. List details of all movies which have not been released yet.
Exercise | Q 4. | Page 178

Suppose your school management has decided to conduct cricket matches between students of Class XI and Class XII. Students of each class are asked to join any one of the four teams – Team Titan, Team Rockers, Team Magnet, and Team Hurricane. During summer vacations, various matches will be conducted between these teams. Help your sports teacher to do the following:

  1. Create a database “Sports”.
  2. Create a table “TEAM” with the following considerations:
    i) It should have a column TeamID for storing an integer value between 1 to 9, which refers to the unique identification of a team.
    ii) Each TeamID should have its associated name (TeamName), which should be a string of length not less than 10 characters.
  3. Using table level constraint, make TeamID the primary key.
  4. Show the structure of the table TEAM using a SQL statement.
  5. As per the preferences of the students four teams were formed as given below. Insert these four rows in the TEAM table:
    Row 1: (1, Team Titan)
    Row 2: (2, Team Rockers)
    Row 3: (3, Team Magnet)
    Row 3: (4, Team Hurricane)
  6. Show the contents of the table TEAM using a DML statement.
  7. Now create another table MATCH_DETAILS and insert data as shown below. Choose appropriate data types and constraints for each attribute.
Table: MATCH_DETAILS
MatchID MatchDate FirstTeamID SecondTeamID FirstTeamScore SecondTeamScore
M1 2018-07-17 1 2 90 86
M2 2018-07-18 3 4 45 48
M3 2018-07-19 1 3 78 56
M4 2018-07-19 2 4 56 67
M5 2018-07-18 1 4 32 87
M6 2018-07-17 2 3 67 51
Exercise | Q 5. | Page 178

Using the sports database containing two relations (TEAM, MATCH_DETAILS) and write the Query for the following:

  1. Display the MatchID of all those matches where both teams have scored more than 70.
  2. Display the MatchID of all those matches where FirstTeam has scored less than 70 but SecondTeam has scored more than 70.
  3. Display the MatchID and date of matches played by Team 1 and won by it.
  4. Display the MatchID of matches played by Team 2 and not won by it.
  5. Change the name of the relation TEAM to T_DATA. Also, change the attributes TeamID and TeamName to T_ID and T_NAME respectively.
Exercise | Q 6. | Page 179

A shop called Wonderful Garments which sells school uniforms maintains a database SCHOOLUNIFORM as shown below. It consisted of two relations - UNIFORM and COST. They made UniformCode the primary key for UNIFORM relations. Further, they used UniformCode and Size to be composite keys for COSTrelation. By analyzing the database schema and database state, specify SQL queries to rectify the following anomalies.

  1. M/S Wonderful Garments also keeps handkerchiefs of red colour, medium size of Rs. 100 each.
  2. INSERT INTO COST (UCode, Size, Price) values (7, 'M', 100);
    When the above query is used to insert data, the values for the handkerchief without entering its details in the UNIFORM relation are entered. Make a provision so that the data can be entered in the COST table only if it is already there in the UNIFORM table.
  3. Further, they should be able to assign a new UCode to an item only if it has a valid UName. Write a query to add appropriate constraints to the SCHOOLUNIFORM database.
  4. Add the constraint so that the price of an item is always greater than zero.
Exercise | Q 7. | Page 179

Consider the following table named “Product”, showing details of products being sold in a grocery shop.

PCode PName UPrice Manufacturer
P01 Washing Powder 120 Surf
P02 Toothpaste 54 Colgate
P03 Soap 25 Lux
P04 Toothpaste 65 Pepsodent
P05 Soap 38 Dove
P06 Shampoo 245 Dove

Write SQL queries for the following:

  1. Create the table Product with appropriate data types and constraints.
  2. Identify the primary key in the Product.
  3. List the Product Code, Product Name, and price in descending order of their product name. If PName is the same, then display the data in ascending order of price.
  4. Add a new column Discount to the table Product.
  5. Calculate the value of the discount in the table Product as 10 percent of the UPrice for all those products where the UPrice is more than 100, otherwise, the discount will be 0.
  6. Increase the price by 12 percent for all the products manufactured by Dove.
  7. Display the total number of products manufactured by each manufacturer. Write the output(s) produced by executing the following queries on the basis of the information given above in the table Product:
  8. SELECT PName, Average (UPrice) FROM Product GROUP BY Pname;
    i) SELECT DISTINCT Manufacturer FROM Product;
    j) SELECT COUNT (DISTINCT PName) FROM Product;
    k) SELECT PName, MAX(UPrice), MIN(UPrice) FROM Product GROUP BY PName;
Exercise | Q 8. | Page 180

Using the CARSHOWROOM database given in the chapter, write the SQL queries for the following:

  1. Add a new column Discount in the INVENTORY table.
  2. Set appropriate discount values for all cars keeping in mind the following:
    (i) No discount is available on the LXI model.
    (ii) VXI model gives a 10 percent discount.
    (iii) A 12 percent discount is given on cars other than the LXI model and VXI model.
  3. Display the name of the costliest car with the fuel type “Petrol”.
  4. Calculate the average discount and total discount available on Baleno cars.
  5. List the total number of cars having no discount.

Solutions for 9: Structured Query Language (SQL)

Exercise
NCERT solutions for Computer Science [English] Class 12 chapter 9 - Structured Query Language (SQL) - Shaalaa.com

NCERT solutions for Computer Science [English] Class 12 chapter 9 - Structured Query Language (SQL)

Shaalaa.com has the CBSE Mathematics Computer Science [English] Class 12 CBSE solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. NCERT solutions for Mathematics Computer Science [English] Class 12 CBSE 9 (Structured Query Language (SQL)) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.

Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. NCERT textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.

Concepts covered in Computer Science [English] Class 12 chapter 9 Structured Query Language (SQL) are Performing Insert, Update, Delete Queries Using Cursor, Display Data by Using Fetchone(), Fetchall(), Rowcount, Creating Database Connectivity Applications, Introduction of Structured Query Language (SQL), Structured Query Language (SQL), Data Types and Constraints in MySQL, SQL for Data Definition, SQL for Data Manipulation, SQL for Data Query, Data Updation and Deletion, Functions in SQL, GROUP BY Clause in SQL, Operations on Relations, Using Two Relations in Query, Connecting SQL with Python.

Using NCERT Computer Science [English] Class 12 solutions Structured Query Language (SQL) exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in NCERT Solutions are essential questions that can be asked in the final exam. Maximum CBSE Computer Science [English] Class 12 students prefer NCERT Textbook Solutions to score more in exams.

Get the free view of Chapter 9, Structured Query Language (SQL) Computer Science [English] Class 12 additional questions for Mathematics Computer Science [English] Class 12 CBSE, and you can use Shaalaa.com to keep it handy for your exam preparation.

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×