- Function handles DATE / TIME in SQL - Part 2

This article will show you in detail how to use all functions to handle Date / Time in SQL with syntax and specific examples to make it easier to visualize and capture functions.
- CLONE TABLE in SQL

This article will show you in detail how to use CLONE TABLE in SQL with a specific example to make it easier to visualize and capture.
- Handling copy - HANDLING DUPLICATE in SQL

This article will show you in detail how to handle copy - HANDLING DUPLICATE with specific examples to make it easier to visualize and capture.
- Subquery - SUBQUERY in SQL

SUBQUERY is a query inside another SQL query and is embedded in the WHERE clause.
- SEQUENCE in SQL

SEQUENCE is often used because meeting the requirements of many applications is to require each row in a table to contain a unique value similar to the primary key.
- Integrated terminal in SQL Operations Studio (preview)

In SQL Operations Studio (preview), you can open an integrated terminal, starting from the root of the current workspace.
- The LIKE command in SQL

In SQL, the LIKE command is used to compare a value with similar values by using wildcards.
- TOP command in SQL

In SQL, the TOP statement is used to retrieve N records or X percent records from a table.
- ORDER BY command in SQL

In SQL, the ORDER BY clause is used to sort data in ascending order or in descending order on one or more columns.
- GROUP BY command in SQL

The GROUP BY clause in SQL is used in conjunction with the SELECT statement to sort data uniformly into groups.
- DISTINCT keyword in SQL

The DISTINCT keyword in SQL is used in conjunction with the SELECT statement to remove all duplicate records and retrieve only records.
- Sort results in SQL

To sort data in SQL, we use the ORDER BY clause.
- Constraints in SQL

Constraint is the rule applied on the data columns of a table.
- The clause to combine JOIN data in SQL

In SQL, the JOIN clause is used to combine records from two or more tables in a Database using common values from each table.
- INNER JOIN in SQL

INNER JOIN in SQL is the most important and often used JOIN type.
- LEFT JOIN in SQL

The LEFT JOIN in SQL is the type of JOIN that returns all records from the left table and matching records from the right table.
- RIGHT JOIN in SQL

RIGHT JOIN in SQL is a type of JOIN that returns all records from the RIGHT side table and matching records from the LEFT side table.
- FULL JOIN in SQL

FULL JOIN in SQL returns all records in the left table and the table must combine and fill in that NULL values for values do not match.
- SELF JOIN in SQL

Each Join operation must have two tables, but there are cases where you have to perform JOIN on the same table, but you can call this JOIN operation SELF JOIN.
- CARTESIAN JOIN in SQL

CARTESIAN JOIN in SQL returns the Cartesian product of record sets from two or more combined tables.