The structuring of Database is normalization, Normalization is the process of restructuring tables to eliminate design problems. This process removes redundant data, makes it possible to access data more easily.
PostgreSQL releases its two versions 9.5 and 9.6, this year. They launched the UPSERT functionality after a long time that we know from MySQL (aka ON DUPLICATE KEY UPDATE), better full text search and speed improvements.
The Cursor is database object use for getting data and manipulating particular row at a time. It is associated with select query it processes each row returned by select query.
Delete command is used to delete all the rows from the table. If we use where clause then according to condition specific rows will be deleted. In del
Primary key is a key that uniquely identifies a record in a table. It cannot accepts a null value. We cannot have multiple primary key in a table. It
It is a set of structured query language statement with given name. It is stored in the database in the compiled form.It is store in the compile form that’s why it can be shared by many program.
Union and Union all both are use for combine the result-set of two of more select queries. Let us explain both individuallyUnion-Union Operator is us
Where clause is very important clause for filtering data .It search the records from the table according to the condition given in the where clause.
Tempopary tables are created at runtimes and ability to perform all the operation like the normal table. These tables have limited scope. This table is stored in tempdb.
User Defined Functions play a major role in SQL. User Defined functions can be used to perform a complicated logic, can accept parameters and return data. Many a times we have to write complex logic which cannot be written using a single query.
In this article I would discuss about the Database Mail which is used to send the Email using SQL Server. Database Mail Configuration To Create a D
This Article describes how to create a Microsoft SQL Server Agent job step that executes Store procedure in SQL Server by using SQL Server Management Studio.