TipsMake
Newest

Program - Page 65

Learn basic programming with C, C++, Python, JavaScript, PHP, CSS, HTML5 programming languages. You can also find tutorials on databases, SQL Server here.

The CREATE USER command in SQL Server
25 May 2019

The CREATE USER command in SQL Server

This article will show you in detail how to use the CREATE USER command in SQL Server, with specific syntax and examples to better visualize and capture commands.

DROP USER command in SQL Server
25 May 2019

DROP USER command in SQL Server

This article will show you in detail how to use the DROP USER command in SQL Server with specific syntax and examples to better visualize and capture commands.

LITERAL in SQL Server
25 May 2019

LITERAL in SQL Server

The article details how to use Literal - Hang (strings, integers, decimals, and datetime values) in SQL Server.

Declare variables in SQL Server
25 May 2019

Declare variables in SQL Server

SQL Server fully exists the concepts of data types, variables and declarations of variables as other programming languages. The article will learn how to declare a variable,

SEQUENCE in SQL Server
25 May 2019

SEQUENCE in SQL Server

Sequence is often used in databases because it is necessary for many applications. The article will provide syntax and examples of how to create and delete the sequence and its

FUNCTION (Function) in SQL Server
25 May 2019

FUNCTION (Function) in SQL Server

The function in SQL Server is stored in the database so you can pass the parameters as well as return the values. The article will give you the syntax and examples of how to

PROCEDURE (Procedure) in SQL Server
25 May 2019

PROCEDURE (Procedure) in SQL Server

Procedure is a program in the database that contains many statements that you save for later use but have different points from Function. The article will give you the syntax and

INTERSECT operator in SQL Server
25 May 2019

INTERSECT operator in SQL Server

In SQL Server (Transact-SQL), INTERSECT operator is used to return records in both data sets or SELECT statements.

EXCEPT operator in SQL Server
25 May 2019

EXCEPT operator in SQL Server

The EXCEPT operator in SQL Server is used to return the rows in the first SELECT statement that are not returned in the second SELECT statement.

PIVOT clause in SQL Server
25 May 2019

PIVOT clause in SQL Server

In SQL Server (Transact-SQL), the PIVOT clause allows cross tabulation to pass data from one table to another.

Data types in SQL Server
25 May 2019

Data types in SQL Server

Below are the data types (data types) in SQL Server, including character strings, numbers and times / dates.

ALTER TABLE statement in SQL Server
25 May 2019

ALTER TABLE statement in SQL Server

In SQL Server, the ALTER TABLE statement is used to add columns, edit columns, delete columns, rename columns or rename tables.

VIEW in SQL Server
25 May 2019

VIEW in SQL Server

The article explains how to create, update and delete VIEW in SQL Server with syntax and examples.