Mithlesh Upadhyay has Published 57 Articles

MySQL Recursive CTE (Common Table Expressions)

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:33:23

2K+ Views

MySQL Recursive CTE allows users to write queries that involve recursive operations. Recursive CTE is an expression that is defined recursively. It is useful in hierarchical data, graph traversals, data aggregation, and data reporting. In this article, we will discuss Recursive CTE with its syntax and examples. Introduction Common Table ... Read More

Neo4j Query Cypher Language

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:32:10

735 Views

Neo4j database is one of the most popular choices in graph databases. One of the reasons for this is its powerful query language, Cypher. Neo4j has developed its own query language called Cypher, which differs from SQL in that it operates on nodes rather than tables, rows, and columns. Its ... Read More

Normal Forms in DBMS

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:30:51

26K+ Views

Normalization is a process of organizing data in a database to reduce redundancy and improve data consistency. Primary keys are really important in organizing information in a database. They help to make sure that every row in a table has a unique identification so that nothing gets mixed up or ... Read More

Normalization Process in DBMS

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:28:20

1K+ Views

Database normalization is a way of organizing information in a database so that it is efficient and easy to use. It involves breaking down big tables into smaller ones that relate to each other in a logical way. This helps to prevent errors and confusion when making changes to the ... Read More

NoSQL Data Architecture Patterns

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:23:52

3K+ Views

An architecture pattern is a way of organizing data in a logical and structured manner. So, it can be stored and accessed efficiently. NoSQL databases are different from traditional relational databases. Because Tables are not used to store data in it. It uses document-oriented, key-value or graph formats. It makes ... Read More

Number of Possible Super Keys in DBMS

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:21:13

3K+ Views

In database management systems (DBMS), super keys are an essential concept used to identify unique records in a table. A super key is a set of one or more than one attribute that can uniquely identify a record in a table. In this article, we will explore the number of ... Read More

Object Database Conceptual Design

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:17:56

981 Views

You should consider the needs of the applications during designing a database. Object databases offer a unique approach to database design that can be beneficial in certain situations. In this article, we will discuss the conceptual design of object databases. Object database design Object-Oriented Model is process of representing real-world ... Read More

Object Identity, and Objects versus Literals

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:14:46

1K+ Views

DBMS supports object-oriented data. It ensures direct correspondence between real-world objects and their representations in the database. This correspondence ensures that objects retain their integrity and identity. It enables easy identification and manipulation. Object Data Management System (ODMS) assigns unique identity to each independent object stored in the database. This ... Read More

Object-Relational Features_ Object Database Extensions to SQL

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:13:01

916 Views

In DBMS, there are object-relational features that combine elements of object databases with SQL. SQL language is used for relational databases, and it has evolved over time. In the latest standard called SQL:2008, object features have been incorporated, although not all commercial DBMSs have implemented these features yet. Object-relational model ... Read More

Offset-Fetch in MS SQL Server

Mithlesh Upadhyay

Mithlesh Upadhyay

Updated on 18-May-2023 18:12:15

3K+ Views

Offset-Fetch is feature in MS SQL Server. It helps to retrieve subset of rows from result set. It consists of two components: OFFSET and FETCH. The OFFSET clause specifies the number of rows to skip from the beginning of the result set. FETCH clause determines the number of rows to ... Read More

Advertisements