हिंदी

Rahul, who works as a database designer, has developed a database for a bookshop. This database includes a table BOOK whose column (attribute) names are mentioned below: - Informatics Practices

Advertisements
Advertisements

प्रश्न

Rahul, who works as a database designer, has developed a database for a bookshop. This database includes a table BOOK whose column (attribute) names are mentioned below: 

BCODE: Shows the unique code for each book.
TITLE: Indicates the book’s title.
AUTHOR: Specifies the author’s name.
PRICE: Lists the cost of the book.

Table: BOOK

BCODE TITLE AUTHOR PRICE
B001 MIDNIGHT'S CHILDREN SALMAN RUSHDIE 500
B002 THE GOD OF SMALL THINGS ARUNDHATI ROY 450
B003 A SUITABLE BOY VIKRAM SETH 600
B004 THE WHITE TIGER ARAVIND ADIGA 399
B005 TRAIN TO PAKISTAN KHUSHWANT SINGH 350
  1. Write SQL query to display book titles in lowercase.
  2. Write SQL query to display the highest price among the books.
  3. Write SQL query to display the number of characters in each book title.
  4. Write SQL query to display the Book Code and Price sorted by Price in descending order. 
लघु उत्तरीय

उत्तर

  1. SELECT LOWER(TITLE) FROM BOOK;
  2. SELECT MAX(PRICE) FROM BOOK; 
  3. SELECT LENGTH(TITLE) FROM BOOK;
  4. SELECT BCODE, PRICE FROM BOOK ORDER BY PRICE DESC; 
shaalaa.com
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
2024-2025 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×