SQL Questions and Answers for Interview, SQL Interview Questions and Answers for freshers, SQL MCQ Questions and Answers pdf

SQL Questions and Answers for Interview

Hello aspirant in this article you can find your query related to SQL questions and answers for interview, SQL interview questions and answers for freshers, SQL mcq interview questions, SQL MCQ questions and answers pdf download

SQL multiple choice questions and answers for freshers, SQL database interview questions, SQL questions and answers for practice pdf, SQL multiple choice questions with answers pdf

SQL Interview Questions and Answers for freshers

sql questions and answers for interview
SQL Questions and Answers for Interview

SQL Interview questions in Hindi, SQL interview questions इन हिंदी pdf, SQL interview questions नोट्स इन हिंदी, SQL interview questions हिंदी pdf, SQL mcq questions for placement

SQL questions and answers for interview in Hindi and English

1. Which keyword is used in SQL Server to implement the auto increment?

SQL सर्वर में ऑटो इंक्रीमेंट को लागू करने के लिए किस कीवर्ड का उपयोग किया जाता है?

A. INCREMENT

B. IDENTITY

C. UNIQUE

D. ADD

 

2. SQL Like is NOT used with which of the following statement(s)?

निम्नलिखित में से किस कथन के साथ SQL लाइक का प्रयोग नहीं किया जाता है?

A. DELETE

B. ALTER

C. UPDATE

D. SELECT

 

3. In SQL, Like is a __________operator.

SQL में, लाइक एक __________ऑपरेटर है।

A. Relational

B. Unique

C. Additional

D. Logical

 

4. The character(s) which are used independently or in conjunction with SQL Like Operator are ________.

स्वतंत्र रूप से या SQL लाइक ऑपरेटर के साथ संयोजन में उपयोग किए जाने वाले वर्ण ________ हैं।

A. _

B. %

C. Both A. and B.

D. None of these

 

5. A single unit of work for all commands executed consecutively is known as ______.

लगातार निष्पादित सभी आदेशों के लिए कार्य की एक इकाई को ______ के रूप में जाना जाता है।

A. Transaction

B. Control

C. Rollback

D. Commit

 

6. Which of the following is/are transaction control commands in SQL?

निम्नलिखित में से कौन SQL में ट्रांजेक्शन कंट्रोल कमांड है/हैं?

A. Rollback

B. Commit

C. Both A. and B.

D. None of these

 

7. To get the table’s previous permanent status, use the ____ command.

तालिका की पिछली स्थायी स्थिति प्राप्त करने के लिए, ____ कमांड का उपयोग करें।

A. Rollback

B. Transaction

C. Commit

D. None of these

 

8. SQL CREATE DATABASE is used to __________.

SQL CREATE DATABASE का उपयोग __________ के लिए किया जाता है।

A. Create a table

B. Create a row

C. Create a column

D. Create a database

 

9. In order to start the transaction, the command used is ________.

लेन-देन शुरू करने के लिए, प्रयुक्त कमांड ________ है।

A. Mysql > START ROLLBACK;

B. Mysql > START TRANSACTION;

C. Mysql > START COMMIT;

D. None of these

 

10. A direct table creation option is provided in ________.

________ में एक सीधा टेबल निर्माण विकल्प प्रदान किया जाता है।

A. Oracle

B. MySQL

C. Both A. and B.

D. None of these

 

SQL questions and answers for interview

11. Using the ______ statement, a database can be renamed.

_________ कथन का उपयोग करते हुए, एक डेटाबेस का नाम बदला जा सकता है।

A. SQL DROP DATABASE

B. SQL RENAME DATABASE

C. SQL CREATE DATABASE

D. SQL SELECT DATABASE

 

12. SQL _______ can be used to delete or drop existing databases in a SQL schema.

SQL _______ का उपयोग SQL स्कीमा में मौजूदा डेटाबेस को हटाने या छोड़ने के लिए किया जा सकता है।

A. DROP DATABASE

B. RENAME DATABASE

C. CREATE DATABASE

D. SELECT DATABASE

 

13. Which of the following statement is TRUE?

निम्नलिखित में से कौन सा कथन सत्य है?

A. A TABLE name can be renamed.

B. A DATABASE name can be renamed.

C. Both A and B

D. None of these

 

14. Which syntax is correct for Rename Database in SQL?

SQL में डेटाबेस का नाम बदलने के लिए कौन सा सिंटैक्स सही है?

A. ALTER old_database_name MODIFY NAME = new_database_name;

B. RENAME DATABASE old_database_name TO new_database_name;

C. RENAME old_database_name TO new_database_name;

D. ALTER DATABASE old_database_name MODIFY NAME = new_database_name;

 

15. Which syntax is correct for Rename Database in MySQL?

MySQL में डेटाबेस का नाम बदलने के लिए कौन सा सिंटैक्स सही है?

A. ALTER old_database_name MODIFY NAME = new_database_name;

B. RENAME DATABASE old_database_name TO new_database_name;

C. RENAME old_database_name TO new_database_name;

D. ALTER DATABASE old_database_name MODIFY NAME = new_database_name;

 

16. Which statement is used to select the database in SQL?

SQL में डेटाबेस का चयन करने के लिए किस कथन का उपयोग किया जाता है?

A. ALTER

B. USE

C. SELECT

D. CREATE

 

17. Which syntax is used to show all the databases?

सभी डेटाबेस को दिखाने के लिए किस सिंटैक्स का उपयोग किया जाता है?

A. SHOW DATABASES;

B. SELECT DATABASES;

C. USE DATABASES;

D. None of these

 

18. Which statement is used to select the database in Oracle?

Oracle में डेटाबेस का चयन करने के लिए किस कथन का उपयोग किया जाता है?

A. RENAME

B. SELECT

C. USE

D. None of these

 

19. In DBMS, table is known as _____ and row is known as _____.

DBMS में, टेबल को _____ के रूप में जाना जाता है और रो को _____ के रूप में जाना जाता है।

A. Tuple, Relation

B. Tuple, Tuple

C. Relation, Tuple

D. Relation, Relation

 

20. Select the statement which is TRUE?

उस कथन का चयन करें जो सत्य है?

A. In case a transaction is not rolled back, the data allied with table variable get rolled back.

B. In case a transaction is rolled back, the data allied with table variable does not roll back.

C. In case a transaction is rolled back, the data allied with table variable also get rolled back.

D. None of these.

 

SQL questions and answers for interview

21. Select the statement which is TRUE?

उस कथन का चयन करें जो सत्य है?

A. In a table, there could be any number of columns and specified number of rows.

B. In a table, there could be any number of rows and specified number of columns.

C. In a table, there could be any number of rows and any number of columns.

D. In a table, there could be specified number of rows and specified number of columns.

 

22. Temporary variables use _______ resources than table variables.

अस्थायी चर तालिका चर की तुलना में _______ संसाधनों का उपयोग करते हैं।

A. Equal

B. Less

C. More

D. None of these

 

23. What is SQL CREATE Table used for?

A. To Delete table

B. To Create table

C. To Update table

D. None of these

 

24. Input and output parameters can be derived from table variables.

इनपुट और आउटपुट पैरामीटर तालिका चर से प्राप्त किए जा सकते हैं।

A. True

B. False

 

25. For integer value, which data type is supported in Oracle?

पूर्णांक मान के लिए, Oracle में कौन सा डेटा प्रकार समर्थित है?

A. Digit

B. Number

C. INT

D. None of these

 

26. What is the difference between DELETE and TRUNCATE statements?

DELETE और TRUNCATE स्टेटमेंट में क्या अंतर है?

A. DELETE statement only deletes rows from the table whereas TRUNCATE statement can only delete columns from the table.

B. DELETE statement does not free up the space kept in check by the table whereas TRUNCATE statement free up the space kept in check by the table.

C. DELETE statement free up the space kept in check by the table whereas TRUNCATE statement does not free up the space kept in check by the table.

D. DELETE statement only deletes columns from the table whereas TRUNCATE statement can only delete rows from the table.

 

27. To delete table definition and all data from the table, which statement is used?

टेबल डेफिनिशन और टेबल से सभी डेटा को डिलीट करने के लिए किस स्टेटमेंट का उपयोग किया जाता है?

A. DELETE

B. ALTER

C. DROP

D. None of these

 

28. When the table is dropped _________.

जब टेबल को _________ से गिराया जाता है।

A. Relationship is dropped

B. Integrity constraints are dropped

C. Table structure is dropped

D. All of the above

 

29. In SQL, which statement can help in changing the name of the table?

A. ALTER

B. RENAME

C. Both A) and B)

D. None of these

 

30. When the table is truncated __________.

जब टेबल को छोटा किया जाता है __________।

A. Relationship is dropped

B. Integrity constraints are dropped

C. Table structure is dropped

D. None of these

 

SQL questions and answers for interview

31. TRUNCATE TABLE requires _________.

TRUNCATE TABLE को _________ की आवश्यकता होती है।

A. HAVING clause

B. WHERE clause

C. Both a and b

D. None of these

 

32. SELECT INTO statement __________.

SELECT INTO कथन __________।

A. Copy the content from one table into another existing table

B. Rename the content in a table

C. Select the content from a table

D. None of these

 

33. Select the correct statement.

सही कथन का चयन करें।

A. TRUNCATE TABLE uses fewer resources than DELETE TABLE statement

B. TRUNCATE TABLE is faster than DELETE TABLE statement

C. Both A) and B)

D. None of these

 

34. Which of the following statement is TRUE?

निम्नलिखित में से कौन सा कथन सत्य है?

A. Temporary table can do similar operations to normal table

B. At run time, temporary tables can be created

C. Both A) and B)

D. None of these

 

35. Which of the following are the types of the temp tables?

निम्नलिखित में से कौन सा टेम्प टेबल के प्रकार हैं?

A. Global Temp

B. Local Temp

C. Both A) and B)

D. None of these

 

36. How many temp tables are there?

कितने अस्थायी टेबल हैं?

A. 1

B. 2

C. 3

D. 4

 

37. Local Temp Variable is used with which sign?

लोकल टेम्प वेरिएबल का प्रयोग किस चिन्ह के साथ किया जाता है?

A. #

B. @

C. ?

D. &

 

38. Which one is not the OPTIONAL Clause in SELECT statement?

सेलेक्ट स्टेटमेंट में कौन सा ऑप्शनल क्लॉज नहीं है?

A. HAVE

B. ORDER BY

C. WHERE

D. HAVING

 

39. Global Temp Variable is used with which sign?

Global Temp Variable का प्रयोग किस चिन्ह के साथ किया जाता है?

A. ####

B. ###

C. ##

D. #

 

40. Which statement is TRUE about the WHERE Clause?

WHERE क्लॉज के बारे में कौन सा कथन सही है?

A. In order to select the defined groups, WHERE Clause is used

B. In order to group the rows, WHERE Clause is used

C. In order to retrieve rows, WHERE Clause is used

D. In order to return the rows, WHERE Clause is used

 

SQL questions and answers for interview

41. Which statement is TRUE about the HAVING Clause?

HAVING क्लॉज के बारे में कौन सा कथन सत्य है?

A. In order to select the defined groups by the GROUP BY Clause, HAVING Clause is used

B. In order to return the rows, HAVING Clause is used

C. In order to group the rows, HAVING Clause is used

D. None of the above

 

42. Which statement is TRUE about the GROUP BY Clause?

ग्रुप बाय क्लॉज के बारे में कौन सा कथन सही है?

A. In order to select the defined groups, GROUP BY Clause is used

B. In order to group the rows that share the same property, GROUP BY Clause is used

C. In order to retrieve rows, GROUP BY Clause is used

D. In order to return the rows, GROUP BY Clause is used

 

43. Which statement is TRUE about the ORDER BY Clause?

ऑर्डर बाय क्लॉज के बारे में कौन सा कथन सही है?

A. In order to select the defined groups, ORDER BY Clause is used

B. In order to group the rows, ORDER BY Clause is used

C. In order to return the rows in a specific order, ORDER BY Clause is used

D. None of the above

 

44. Which of the following clause is optional in SQL SELECT Statement?

SQL सेलेक्ट स्टेटमेंट में निम्नलिखित में से कौन सा क्लॉज वैकल्पिक है?

A. HAVING

B. FROM

C. SELECT

D. None of these

 

45. Which of the following clause cannot be optional in SQL SELECT Statement?

SQL सेलेक्ट स्टेटमेंट में निम्नलिखित में से कौन सा क्लॉज वैकल्पिक नहीं हो सकता है?

A. ORDER BY

B. GROUP BY

C. WHERE

D. None of these

 

46. Which clause is used to retrieve a unique element from the table?

तालिका से एक अद्वितीय तत्व को पुनः प्राप्त करने के लिए किस खंड का उपयोग किया जाता है?

A. SELECT DISTINCT

B. SELECT UNIQUE

C. Both A) and B)

D. None of these

 

47. In SQL SELECT COUNT, one needs to specify the __________.

SQL SELECT COUNT में, किसी को __________ निर्दिष्ट करने की आवश्यकता होती है।

A. Column Name

B. Table Name

C. Row Name

D. None of these

 

48. What is the functionality of SQL COUNT?

SQL COUNT की कार्यक्षमता क्या है?

A. It returns the no of record of row

B. It returns the no of record of database

C. It returns the no of record of table

D. It returns the no of record of column

 

49. The SELECT TOP statement shows the limited number of ________.

सेलेक्ट टॉप स्टेटमेंट ________ की सीमित संख्या को दर्शाता है।

A. Tables

B. Columns

C. Rows

D. None of these

 

50. Using the SQL first() function, one can return the ____ value of the selected column.

SQL फर्स्ट () फ़ंक्शन का उपयोग करके, कोई चयनित कॉलम का ____ मान वापस कर सकता है।

A. First

B. Last

C. Third

D. Second

Also Read: SQL interview questions and answers pdf

51. Select the correct syntax of SELECT TOP clause?

सेलेक्ट टॉप क्लॉज का सही सिंटैक्स चुनें?

A. SELECT TOP name

B. SELECT TOP Number

C. SELECT TOP FROM

D. SELECT TOP column

 

52. Using the SQL last() function, one can return the ______ value of the selected column.

SQL लास्ट () फ़ंक्शन का उपयोग करके, कोई चयनित कॉलम का ______ मान वापस कर सकता है।

A. First

B. Last

C. Second

D. Third

 

53. In order to assign a random name to a column or table, which SQL SELECT Clause is used?

किसी कॉलम या टेबल को रैंडम नाम असाइन करने के लिए किस SQL ​​सेलेक्ट क्लॉज का उपयोग किया जाता है?

A. FROM

B. AS

C. HAVING

D. WHERE

 

54. Using SQL SELECT RANDOM() function, one can return the random _______.

SQL SELECT RANDOM () फ़ंक्शन का उपयोग करके, कोई यादृच्छिक ______ वापस कर सकता है।

A. Table

B. Column

C. Row

D. Database

 

55. Which function combines the two different columns?

कौन सा फ़ंक्शन दो अलग-अलग स्तंभों को जोड़ता है?

A. CONCAT

B. MERGE

C. ADD

D. None of these

 

56. What is the difference between MIN and MAX function?

MIN और MAX फंक्शन में क्या अंतर है?

A. MIN function is used to show the maximum data and MAX function is used to show the minimum data

B. MIN function is used to show the minimum data and MAX function is used to show the maximum data

C. Both of these

D. None of these

 

57. What is the difference between HAVING and WHERE clause?

HAVING और WHERE क्लॉज में क्या अंतर है?

A. HAVING clause filters the groups whereas WHERE clauses filter the single record of the table

B. HAVING clause is post-filter whereas WHERE clause is pre-filter

C. HAVING clause is used in column operation whereas WHERE clause is used in row operation

D. All of the above

 

58. In order to sort the records according to the columns, which clause is used?

कॉलम के अनुसार अभिलेखों को क्रमबद्ध करने के लिए किस clause का प्रयोग किया जाता है?

A. ORDER BY

B. GROUP BY

C. HAVING

D. None of these

 

59. What is the keyword of the Ascending and Descending?

आरोही और अवरोही का कीवर्ड क्या है?

A. ASCE, DES

B. ASC, DES

C. ASCE, DESC

D. ASC, DESC

 

60. By default, sorting by ORDER BY clause is done in which order?

डिफ़ॉल्ट रूप से, ORDER BY क्लॉज द्वारा सॉर्टिंग किस क्रम में की जाती है?

A. Ascending

B. Descending

C. Both of these

D. None of these

 

SQL questions and answers for interview

61. SQL INSERT is used to insert a ________.

SQL INSERT का उपयोग ______ डालने के लिए किया जाता है।

A. Single or Multiple table

B. Single or Multiple database

C. Single or Multiple record

D. None of the above

 

62. In order to update one table using another table and join condition, which statement is used.

एक टेबल को दूसरी टेबल का उपयोग करके अपडेट करने और कंडीशन में शामिल होने के लिए किस स्टेटमेंट का उपयोग किया जाता है।

A. SQL UPDATE INTO

B. SQL JOIN UPDATE

C. SQL JOIN

D. SQL UPDATE JOIN

 

63. In order to insert a row directly in the table, which command is used?

टेबल में सीधे लाइन डालने के लिए किस कमांड का प्रयोग किया जाता है?

A. INSERT IN

B. INSERT INTO

C. INSERT UNDER

D. INSERT INSIDE

 

64. SQL DELETE can be used to delete _________.

SQL DELETE का उपयोग _________ को हटाने के लिए किया जा सकता है।

A. View

B. Database

C. Rows

D. All of these

 

65. In order to delete duplicate rows from the table, which keyword is used?

तालिका से डुप्लिकेट पंक्तियों को हटाने के लिए किस कीवर्ड का उपयोग किया जाता है?

A. FROM

B. DISTINCT

C. DELETE

D. WHERE

 

66. What is the clause to delete all rows from the table?

Table से सभी पंक्तियों को हटाने का clause क्या है?

A. SQL DELETE ALL ROWS Table_Name;

B. DELETE FROM Table_Name;

C. DELETE FROM ALL ROWS Table_Name;

D. SQL DELETE ROWS Table_Name;

 

67. In order to delete the database, which keyword is used?

डेटाबेस को हटाने के लिए किस कीवर्ड का उपयोग किया जाता है?

A. ALTER

B. DELETE

C. DROP

D. None of these

 

68. A Key which uniquely identifies each row in the table is known as?

एक कुंजी जो तालिका में प्रत्येक पंक्ति को विशिष्ट रूप से पहचानती है, कहलाती है?

A. Primary Key

B. Foreign Key

C. Composite Key

D. Unique Key

 

69. Which of the following keyword is used to delete the Join?

जॉइन को हटाने के लिए निम्न में से किस कीवर्ड का उपयोग किया जाता है?

A. WHERE

B. ON

C. DELETE

D. All of these

 

70. A Primary Key is basically a __________.

एक प्राथमिक कुंजी मूल रूप से एक _______ है।

A. Table

B. Column

C. Row

D. Database

 

SQL questions and answers for interview

71. Which of the following statement is TRUE about Primary Key?

प्राथमिक कुंजी के बारे में निम्नलिखित में से कौन सा कथन सत्य है?

A. 900 bytes is the maximum length of a primary key

B. The data in a primary key is always multiple

C. Table integrity is not enforced by the primary key

D. Null values are allowed in primary keys

 

72. If multiple columns are used as Primary Key, it is known as ________.

यदि प्राथमिक कुंजी के रूप में एकाधिक स्तंभों का उपयोग किया जाता है, तो इसे _______ के रूप में जाना जाता है।

A. Foreign

B. Composite

C. Unique

D. None of these

 

73. Primary keys can be contained in a table only _______?

प्राथमिक कुंजियों को केवल _____ तालिका में समाहित किया जा सकता है?

A. Once

B. Twice

C. Thrice

D. None of these

 

74. In order to remove a primary key constraint, which clause is used?

प्राथमिक कुंजी बाधा को remove करने के लिए किस clause का प्रयोग किया जाता है?

A. ALTER

B. DROP

C. DELETE

D. REMOVE

 

75. To add a Primary Key constraint after table is created, which clause is used?

तालिका बनने के बाद एक Primary Key constraint जोड़ने के लिए किस clause का उपयोग किया जाता है?

A. UPDATE

B. JOIN

C. ALTER

D. ADD

 

76. In order to build a link between two tables, which key is used?

दो टेबलों के बीच एक Link बनाने के लिए किस कुंजी का प्रयोग किया जाता है?

A. Composite

B. Foreign

C. Primary

D. Unique

 

77. Foreign key is a field in a table that is _______ key in another table?

Foreign key तालिका में एक फ़ील्ड है जो किसी अन्य तालिका में _______ कुंजी है?

A. Composite

B. Unique

C. Primary

D. None of these

 

78. Which of the following statement is FALSE?

निम्नलिखित में से कौन सा कथन FALSE है?

A. A Primary Key cannot be NULL

B. A Foreign Key can be Duplicate

C. A Primary Key cannot be Duplicate

D. A Foreign Key cannot be NULL

 

79. When two or more columns are combined to be used to uniquely identify each row in the table, it is known as ________.

जब दो या दो से अधिक स्तंभों को जोड़ कर तालिका में प्रत्येक पंक्ति को विशिष्ट रूप से पहचानने के लिए उपयोग किया जाता है, तो इसे ________ के रूप में जाना जाता है।

A. Composite Key

B. Unique Key

C. Primary Key

D. Foreign Key

 

80. All other columns other than the column which is termed as Primary Key, are known as _________.

कॉलम के अलावा अन्य सभी कॉलम जिन्हें प्राथमिक कुंजी कहा जाता है, _________ के रूप में जाने जाते हैं।

A. Composite Keys

B. Alternate Keys

C. Unique Keys

D. None of these

 

SQL questions and answers for interview

81. For one table, there can be ____unique key constraint(s).

एक टेबल के लिए, ____ unique key constraint हो सकती है।

A. 1

B. Many

C. NULL

D. None of these

 

82. GROUP BY clause is placed before which clause in SQL?

GROUP BY क्लॉज को SQL में किस क्लॉज से पहले रखा जाता है?

A. ORDER BY

B. WHERE

C. HAVING

D. FROM

 

83. In order to convert the expression from one to another data type, which SQL Function is used?

एक्सप्रेशन को एक से दूसरे डेटा टाइप में बदलने के लिए कौन सा SQL फंक्शन प्रयोग किया जाता है?

A. CAST

B. CHANGE

C. CONVERT

D. TRANSIT

 

84. Which one if these is used to put the same value in all the rows?

यदि इनका उपयोग सभी पंक्तियों में समान मान रखने के लिए किया जाता है तो कौन सा है?

A. Group by one column

B. Group by single column

C. Group by unique column

D. Group by same value

 

85. What is the syntax of SQL CAST Function?

SQL CAST फ़ंक्शन का सिंटैक्स क्या है?

A. CAST (expression TO [data type])

B. CAST (expression IN [data type])

C. CAST (expression AS [data type])

D. CAST (expression FOR [data type])

 

86. Select the correct type(s) of SQL Comments.

SQL टिप्पणियों के सही प्रकार (प्रकारों) का चयन करें।

A. Multi-line Comments

B. Single Line Comments

C. Inline Comments

D. All of the above

 

87. What is the default length of any data type in the CAST function?

CAST फ़ंक्शन में किसी भी डेटा प्रकार की डिफ़ॉल्ट लंबाई क्या है?

A. 10

B. 20

C. 30

D. 40

 

88. Select the syntax of Single Line Comment.

सिंगल लाइन कमेंट के सिंटैक्स का चयन करें।

A. .

B. !

C.

D. #

 

89. Select the correct syntax for Multi-line Comments.

बहु-पंक्ति टिप्पणियों के लिए सही सिंटैक्स का चयन करें।

A. */Line1

Line2*/

B. /*Line1

Line2/*

C. //*Line1

Line2*//

D. /*Line1

Line2*/

 

90. Comments whose starting and ending lines are different are known as ________.

वे टिप्पणियाँ जिनकी आरंभ और समाप्ति रेखाएँ भिन्न-भिन्न होती हैं, ______ कहलाती हैं।

A. Single Line Comments

B. Multi-line Comments

C. Inline Comments

D. Varied line Comments

 

SQL questions and answers for interview

91. What will be the output of the below SQL statement?

नीचे दिए गए SQL स्टेटमेंट का आउटपुट क्या होगा?

SELECT CAST(25.65 AS int);

A. 24

B. 25

C. 26

D. 65

 

92. What will be the output of the below SQL statement?

नीचे दिए गए SQL स्टेटमेंट का आउटपुट क्या होगा?

SELECT CAST(‘2021-10-06’ AS datetime);

A. 2021-10-06 00:00:00.000

B. 2021-10-06

C. 2021 OCT 06

D. 06-10-2021

 

93. What will be the output of the below SQL statement?

नीचे दिए गए SQL स्टेटमेंट का आउटपुट क्या होगा?

SELECT CAST(25.65 AS varchar);

A. 25

B. 26

C. 25.00

D. 25.65

 

94. In how many parts are the SQL functions are divided into?

SQL फंक्शन को कितने भागों में बांटा गया है?

A. 1

B. 2

C. 3

D. 4

 

95. Select the Aggregate function(s) among the following.

निम्नलिखित में से एग्रीगेट फ़ंक्शन का चयन करें।

A. LAST()

B. FIRST()

C. AVG()

D. All of these

 

96. ______ value is returned by the SQL Aggregate functions?

SQL एग्रीगेट फंक्शन द्वारा ______ मान लौटाया जाता है?

A. NULL

B. Twice

C. Single

D. Infinite

 

97. What does AVG() function returns?

AVG () फ़ंक्शन क्या लौटाता है?

A. Sum of rows of the table

B. Last value of the column

C. First value of the column

D. Average value of the column

 

98. What does COUNT() function returns?

COUNT () फ़ंक्शन क्या लौटाता है?

A. Smallest value

B. Largest value

C. Average value

D. Number of rows

 

99. Which function returns the largest value of the column?

कौन सा फ़ंक्शन कॉलम का सबसे बड़ा मान देता है?

A. LARGE()

B. MAX()

C. MIN()

D. AVG()

 

100. Select the function which is not the Scalar Function(s)?

उस फ़ंक्शन का चयन करें जो स्केलर फ़ंक्शन नहीं है?

A. SUM()

B. LEN()

C. UCASE()

D. NOW()

 

So friend I hope you enjoy this article related to SQL Questions and Answers for Interview, SQL Interview Questions and Answers for freshers, SQL MCQ Questions and Answers pdf download

SQL MCQ Questions and Answers pdf download

SQL question इन हिंदी pdf, SQL question और answers in Hindi, SQL question और answers pdf, SQL questions for interview, SQL questions for practice

File Name SQL Questions and Answers for Interview
File Size 668 KB
No. of Pages 30
Language Hindi and English
Download Click Here

 

Related Searches: SQL basic mcq questions, Mysql mcq questions with answers pdf, SQL commands mcq questions, SQL mcq questions answers, SQL mcq practice questions, SQL mcq questions in Hindi, SQL multiple choice questions and answers for experienced

Leave a Reply

Your email address will not be published. Required fields are marked *