SQL Flashcards

1
Q

What is SQL?

A

Structured Query Language is a domain specific language used in programming and designed for managing data held in a rational data management system

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is a data management system? A relational database system?

A

The software used to store, manage, query, and retrieve data stored in a relational database. Provides an interface between users and applications and the database, as well as administrative functions for managing data storage, access, and performance

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is a database?

A

An organized collection of data stored and accessed electronically. Most databases contain multiple tables, which may each include several different fields. For example, a company database may include tables for products, employees, and financial records

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the sublanguages of SQL?

A

SQL statements are classified into sublanguages: a data query language (DQL), a data definition language (DDL), a data control language (DCL), and a data manipulation language (DML).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is multiplicity?

A

Specifies the number of instances of an EntityType that can be associated with another EntityType, or the number of instances of an EntityType that can be associated with another EntityType.

Can be divided into four types: one-to-one, one-to-many, many-to-one, and many-to-many. A one-to-one relationship: Each entity instance is related to a single instance of another. Multiple instances of the same entity can be associated with one entity instance.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is cardinality?

A

Refers to the uniqueness of data in a specific column of a table. A table would be said to have less cardinality if it has more duplicated data in a column. So, the more cardinality the less data duplication (in a column) of SQL database table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a candidate key?

A

A specific type of field in a relational database that can identify each unique record independently of any other data. It is a super key with no repeated data. Ex. Primary or foreign keys for creating associations between tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Data query language (DQL)

A

The commands of SQL that are used to retrieve data from the database are collectively called as DQL. So all Select statements comes under DQL. Select.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Data definition language (DDL)

A

DDL is Data Definition Language which is used to define data structures. For example: create table, alter table are instructions in SQL.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Data control language (DCL)

A

DCL includes commands such as GRANT and REVOKE which mainly deal with the rights, permissions, and other controls of the database system. GRANT: This command gives users access privileges to the database

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Data manipulation language (DML)

A

DML is Data Manipulation Language which is used to manipulate data itself. For example: insert, update, delete are instructions in SQL

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are Tables and Fields?

A

A table is a set of data that are organized in a model with Columns and Rows. Columns can be categorized as vertical, and Rows are horizontal. A table has specified number of column called fields but can have any number of rows which is called record.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is a Primary Key?

A

A primary key is a combination of fields which uniquely specify a row. This is a special kind of unique key, and it has implicit NOT NULL constraint. It means, Primary key values cannot be NULL.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What is a Unique Key?

A

A Unique key constraint uniquely identified each record in the database. This provides uniqueness for the column or set of columns.

A Primary key constraint has automatic unique constraint defined on it. But not, in the case of Unique Key.

There can be many unique constraint defined per table, but only one Primary key constraint defined per table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is a Foreign Key?

A

A foreign key is one table which can be related to the primary key of another table. Relationship needs to be created between two tables by referencing foreign key with the primary key of another table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is a JOIN?

A

This is a keyword used to query data from more tables based on the relationship between the fields of the tables. Keys play a major role when JOINs are used.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What are the types of JOINS? Explain.

A

There are various types of join which can be used to retrieve data and it depends on the relationship between tables.

· Inner Join.

Inner join return rows when there is at least one match of rows between the tables.

· Right Join.

Right join return rows which are common between the tables and all rows of Right hand side table. Simply, it returns all the rows from the right hand side table even though there are no matches in the left hand side table.

· Left Join.

Left join return rows which are common between the tables and all rows of Left hand side table. Simply, it returns all the rows from Left hand side table even though there are no matches in the Right hand side table.

· Full Join.

Full join return rows when there are matching rows in any one of the tables. This means, it returns all the rows from the left hand side table and all the rows from the right hand side table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is Normalization

A

Normalization is the process of minimizing redundancy and dependency by organizing fields and table of a database. The main aim of Normalization is to add, delete or modify field that can be made in a single table.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is Denormalization?

A

DeNormalization is a technique used to access the data from higher to lower normal forms of database. It is also process of introducing redundancy into a table by incorporating data from the related tables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

What are all the different normalizations?

A

The normal forms can be divided into 5 forms, and they are explained below -.

· First Normal Form (1NF):.

This should remove all the duplicate columns from the table. Creation of tables for the related data and identification of unique columns.

· Second Normal Form (2NF):.

Meeting all requirements of the first normal form. Placing the subsets of data in separate tables and Creation of relationships between the tables using primary keys.

· Third Normal Form (3NF):.

This should meet all requirements of 2NF. Removing the columns which are not dependent on primary key constraints.

· Fourth Normal Form (4NF):.

Meeting all the requirements of third normal form and it should not have multi- valued dependencies.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

What is a View?

A

A view is a virtual table which consists of a subset of data contained in a table. Views are not virtually present, and it takes less space to store. View can have data of one or more tables combined, and it is depending on the relationship.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

What is an Index?

A

An index is performance tuning method of allowing faster retrieval of records from the table. An index creates an entry for each value and it will be faster to retrieve data.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

What are the different types of indexes?

A

There are three types of indexes -.

· Unique Index.

This indexing does not allow the field to have duplicate values if the column is unique indexed. Unique index can be applied automatically when primary key is defined.

· Clustered Index.

This type of index reorders the physical order of the table and search based on the key values. Each table can have only one clustered index.

· NonClustered Index.

NonClustered Index does not alter the physical order of the table and maintains logical order of data. Each table can have 999 non-clustered indexes.

24
Q

What is a Cursor?

A

A database Cursor is a control which enables traversal over the rows or records in the table. This can be viewed as a pointer to one row in a set of rows. Cursor is very much useful for traversing such as retrieval, addition and removal of database records

25
Q

What is a relationship and what are the different types?

A

Database Relationship is defined as the connection between the tables in a database. There are various data basing relationships, and they are as follows:.

· One to One Relationship.

· One to Many Relationship.

· Many to One Relationship.

· Self-Referencing Relationship.

26
Q

What is a query?

A

A DB query is a code written in order to get the information back from the database. Query can be designed in such a way that it matched with our expectation of the result set. Simply, a question to the Database.

27
Q

What is a subquery?

A

A subquery is a query within another query. The outer query is called as main query, and inner query is called subquery. SubQuery is always executed first, and the result of subquery is passed on to the main query.

28
Q

What are the types of subqueries?

A

There are two types of subquery – Correlated and Non-Correlated.

A correlated subquery cannot be considered as independent query, but it can refer the column in a table listed in the FROM the list of the main query.

A Non-Correlated sub query can be considered as independent query and the output of subquery are substituted in the main query.

29
Q

What is stored procedure?

A

Stored Procedure is a function consists of many SQL statement to access the database system. Several SQL statements are consolidated into a stored procedure and execute them whenever and wherever required.

30
Q

What is a trigger?

A

A DB trigger is a code or programs that automatically execute with response to some event on a table or view in a database. Mainly, trigger helps to maintain the integrity of the database.

Example: When a new student is added to the student database, new records should be created in the related tables like Exam, Score and Attendance tables.

31
Q

What is the difference between DELETE and TRUNCATE?

A

DELETE command is used to remove rows from the table, and WHERE clause can be used for conditional set of parameters. Commit and Rollback can be performed after delete statement.

TRUNCATE removes all rows from the table. Truncate operation cannot be rolled back.

32
Q

What are local and global variables and their differences?

A

Local variables are the variables which can be used or exist inside the function. They are not known to the other functions and those variables cannot be referred or used. Variables can be created whenever that function is called.

Global variables are the variables which can be used or exist throughout the program. Same variable declared in global cannot be used in functions. Global variables cannot be created whenever that function is called.

33
Q

What is a constraint?

A

Constraint can be used to specify the limit on the data type of table. Constraint can be specified while creating or altering the table statement. Sample of constraint are.

· NOT NULL.

· CHECK.

· DEFAULT.

· UNIQUE.

· PRIMARY KEY.

· FOREIGN KEY.

34
Q

What is Data Integrity?

A

Data Integrity defines the accuracy and consistency of data stored in a database. It can also define integrity constraints to enforce business rules on the data when it is entered into the application or database.

35
Q

What is Auto Increment?

A

Auto increment keyword allows the user to create a unique number to be generated when a new record is inserted into the table. AUTO INCREMENT keyword can be used in Oracle and IDENTITY keyword can be used in SQL SERVER.

Mostly this keyword can be used whenever PRIMARY KEY is used.

36
Q

What is the difference between cluster and non-cluster index?

A

Clustered index is used for easy retrieval of data from the database by altering the way that the records are stored. Database sorts out rows by the column which is set to be clustered index.

A non-clustered index does not alter the way it was stored but creates a complete separate object within the table. It point back to the original table rows after searching.

37
Q

What is Datawarehouse?

A

Datawarehouse is a central repository of data from multiple sources of information. Those data are consolidated, transformed and made available for the mining and online processing. Warehouse data have a subset of data called Data Marts.

38
Q

What is Self-Join?

A

Self-join is set to be query used to compare to itself. This is used to compare values in a column with other values in the same column in the same table. ALIAS ES can be used for the same table comparison.

39
Q

What is Cross-Join?

A

Cross join defines as Cartesian product where number of rows in the first table multiplied by number of rows in the second table. If suppose, WHERE clause is used in cross join then the query will work like an INNER JOIN.

40
Q

What are user identified functions?

A

User defined functions are the functions written to use that logic whenever required. It is not necessary to write the same logic several times. Instead, function can be called or executed whenever needed

41
Q

What are the types of user defined functions?

A

Three types of user defined functions are.

· Scalar Functions.

· Inline Table valued functions.

· Multi statement valued functions.

Scalar returns unit, variant defined the return clause. Other two types return table as a return.

42
Q

What is collation?

A

Collation is defined as set of rules that determine how character data can be sorted and compared. This can be used to compare A and, other language characters and also depends on the width of the characters.

ASCII value can be used to compare these character data.

43
Q

What are the different types of collation sensitivity?

A

Following are different types of collation sensitivity -.

· Case Sensitivity – A and a and B and b.

· Accent Sensitivity.

· Kana Sensitivity – Japanese Kana characters.

· Width Sensitivity – Single byte character and double byte character.

44
Q

Advantages and Disadvantages of Stored Procedure?

A

Stored procedure can be used as a modular programming – means create once, store and call for several times whenever required. This supports faster execution instead of executing multiple queries. This reduces network traffic and provides better security to the data.

Disadvantage is that it can be executed only in the Database and utilizes more memory in the database server.

45
Q

What is Online Transaction Processing (OLTP)?

A

Online Transaction Processing (OLTP) manages transaction based applications which can be used for data entry, data retrieval and data processing. OLTP makes data management simple and efficient. Unlike OLAP systems goal of OLTP systems is serving real-time transactions.

Example – Bank Transactions on a daily basis.

46
Q

What is CLAUSE?

A

SQL clause is defined to limit the result set by providing condition to the query. This usually filters some rows from the whole set of records.

Example – Query that has WHERE condition

Query that has HAVING condition.

47
Q

What is recursive stored procedure?

A

A stored procedure which calls by itself until it reaches some boundary condition. This recursive function or procedure helps programmers to use the same set of code any number of times.

48
Q

What is Union, MINUS and INTERSECT commands?

A

UNION operator is used to combine the results of two tables, and it eliminates duplicate rows from the tables.

MINUS operator is used to return rows from the first query but not from the second query. Matching records of first and second query and other rows from the first query will be displayed as a result set.

INTERSECT operator is used to return rows returned by both the queries.

49
Q

What is an ALIAS command?

A

ALIAS name can be given to a table or column. This alias name can be referred in WHERE clause to identify the table or column.

Example-.

Select st.StudentID, Ex.Result from student st, Exam as Ex where st.studentID = Ex. StudentID

Here, st refers to alias name for student table and Ex refers to alias name for exam table.

50
Q

What is the difference between TRUNCATE and DROP statements?

A

TRUNCATE removes all the rows from the table, and it cannot be rolled back. DROP command removes a table from the database and operation cannot be rolled back.

51
Q

What are aggregate and scalar functions?

A

Aggregate functions are used to evaluate mathematical calculation and return single values. This can be calculated from the columns in a table. Scalar functions return a single value based on the input value.

Example -.

Aggregate – max(), count – Calculated with respect to numeric

ar – UCASE(), NOW() – Calculated with respect to strings.

52
Q

How can you create an empty table from an existing table?

A

Example will be -.

Select * into studentcopy from student where 1=2

Here, we are copying student table to another table with the same structure with no rows copied.

53
Q

How to fetch common records from two tables?

A

Common records result set can be achieved by -.

Select studentID from student INTERSECT Select StudentID from Exam

54
Q

How to fetch alternate records from a table?

A

Records can be fetched for both Odd and Even row numbers -.

To display even numbers-.

Select studentId from (Select rowno, studentId from student) where mod(rowno,2)=0

To display odd numbers-.

Select studentId from (Select rowno, studentId from student) where mod(rowno,2)=1
from (Select rowno, studentId from student) where mod(rowno,2)=1.[/sql]

55
Q

How to select unique records from a table?

A

Select unique records from a table by using DISTINCT keyword.

Select DISTINCT StudentID, StudentName from Student.

56
Q

What is the command used to fetch first 5 characters of the string?

A

There are many ways to fetch first 5 characters of the string -.

Select SUBSTRING(StudentName,1,5) as studentname from student

Select LEFT(Studentname,5) as studentname from student

57
Q

Which operator is used in query for pattern matching?

A

LIKE operator is used for pattern matching, and it can be used as -.

  1. % – Matches zero or more characters.
  2. _(Underscore) – Matching exactly one character.

Example -.

Select * from Student where studentname like ‘a%’

Select * from Student where studentname like ‘ami_’