SQL

SQL (Structured Query Language) is a standardized programming language used for managing and manipulating relational databases. It is the most widely used language for database management systems and is essential for working with data stored in relational databases. SQL allows users to create, read, update, and delete (CRUD) data within a database, as well as to manage database schema and control access to the data.

SQL Tutorial

1
SQL Intro
5 minutes

A concise definition of Introduction to SQL is "An initial overview of SQL principles and syntax."SQL serves as the standardized language used to access and manage databases.

2
SQL Syntax
5 minutes

SQL Syntax is the set of rules governing the structure and composition of SQL statements for querying and manipulating databases.

3
SQL SELECT
5 minutes

The SELECT statement holds significant importance in SQL, serving to fetch results from our database.

4
SQL SELECT DISTINCT
5 minutes

SQL SELECT DISTINCT is used to retrieve unique values from a specified column or combination of columns in a table.

5
SQL WHERE
5 minutes

The SQL WHERE clause is used to filter records in a SELECT, UPDATE, or DELETE statement based on specified conditions.

6
SQL ORDER BY
5 minutes

SQL ORDER BY is a clause used to sort the result set of a query based on one or more columns in ascending or descending order.

7
SQL AND
10 minutes

The SQL AND operator is used to combine multiple conditions in a WHERE clause to retrieve rows that satisfy all the conditions.

8
SQL OR
5 minutes

The SQL OR operator is used to combine multiple conditions in a WHERE clause to retrieve rows that satisfy at least one of the conditions.

9
SQL NOT
10 minutes

The SQL NOT operator is used to negate a condition in a WHERE clause, selecting rows that do not satisfy the specified condition.

10
SQL INSERT INTO
5 minutes

SQL INSERT INTO is a command used to add new records or rows into a database table.

11
SQL NULL Values
5 minutes

SQL NULL Values represent missing or undefined data in a database table.

12
SQL UPDATE
5 minutes

SQL UPDATE is a command used to modify existing records in a database table.

13
SQL DELETE
10 minutes

SQL DELETE is a statement used to remove one or more records from a database table based on specified conditions.

14
SQL Select Top
10 minutes

SQL TOP, LIMIT, FETCH FIRST, or ROWNUM Clause is used to restrict the number of rows returned by a query.

15
SQL Aggregate Functions
10 minutes

SQL Aggregate Functions perform calculations on multiple rows to yield a single result.

16
SQL MIN and MAX
10 minutes

SQL MIN() function retrieves the smallest value from a selected column, while SQL MAX() function fetches the largest value from a selected column.

17
SQL COUNT
10 minutes

The SQL COUNT() function calculates the number of rows that satisfy a specified condition.

18
SQL SUM
10 minutes

SQL SUM() function calculates the total sum of values in a specific column.

19
SQL AVG
10 minutes

The SQL AVG() function calculates the average value of a numeric column.

20
SQL LIKE
10 minutes

The SQL LIKE operator is used to search for a specified pattern within a column.

21
SQL Wildcards
10 minutes

SQL wildcards are special characters used with the LIKE operator to represent unspecified or variable parts of data in a search pattern.

22
SQL IN
10 minutes

The SQL IN operator allows you to specify multiple values in a WHERE clause to compare against a column.

23
SQL BETWEEN
10 minutes

The SQL BETWEEN operator selects values within a specified range.

24
SQL Aliases
10 minutes

SQL Aliases are temporary names assigned to table or column names in SQL queries, providing a shorter or more descriptive name for easier reference.

25
SQL Joins
10 minutes

SQL Joins are used to combine rows from two or more tables based on a related column between them.

26
SQL INNER JOIN
10 minutes

SQL INNER JOIN retrieves records with matching values in both tables.

27
SQL LEFT JOIN
5 minutes

SQL LEFT JOIN retrieves all records from the left table and matched records from the right table, with unmatched records in the right table set to NULL.

28
SQL RIGHT JOIN
5 minutes

The SQL RIGHT JOIN keyword retrieves all records from the right table and matching records from the left table.

29
SQL FULL Join
10 minutes

The SQL FULL OUTER JOIN keyword retrieves all records when there is a match in either the left or right table.

30
SQL Self Join
10 minutes

SQL Self Join: A self-join is a SQL query in which a table is joined with itself, typically to compare rows within the same table.

31
SQL UNION
10 minutes

SQL UNION Operator: The UNION operator combines the results of two or more SELECT statements into a single result set, removing duplicate rows.

32
SQL GROUP BY
10 minutes

SQL GROUP BY Statement: It's used to group rows that have the same values into summary rows, like "find the number of customers in each country."

33
SQL HAVING
10 minutes

The SQL HAVING clause filters records based on aggregate conditions applied to groups created by the GROUP BY clause.

34
SQL EXISTS
10 minutes

The SQL EXISTS operator checks for the existence of any rows in a subquery and returns true if the subquery returns one or more rows; otherwise, it returns false.

35
SQL ANY, ALL
10 minutes

The SQL ANY and ALL operators are used to compare a value with a set of values returned by a subquery. ANY returns true if any of the subquery values meet the condition, while ALL returns true if all of the subquery values meet the condition.

36
SQL Select Into
5 minutes

The SQL SELECT INTO statement retrieves data from one or more database tables and stores it into a new table or a variable.

37
SQL INSERT INTO SELECT
10 minutes

The SQL INSERT INTO SELECT statement inserts data from an existing table into a specified table based on a query.

38
SQL CASE
10 minutes

The SQL CASE expression is a conditional expression used to evaluate conditions and return a value based on the result.

39
SQL NULL Functions
5 minutes

SQL NULL functions are used to handle NULL values in the database, performing operations like checking for NULL, replacing NULL with another value, or determining if a value is NULL.

40
SQL Stored Procedures
10 minutes

SQL Stored Procedures for SQL Server are precompiled sets of one or more SQL statements that are stored in the database and can be invoked repeatedly to perform specific tasks or operations.

41
SQL Comments
10 minutes

SQL Comments are annotations within SQL code used to provide explanatory or clarifying remarks for humans reading the code, without affecting its execution.

42
SQL Operators
10 minutes

SQL operators are symbols or keywords used to perform operations like arithmetic, comparison, or logical operations on data in a SQL database.

SQL Database

1
SQL CREATE DB
5 minutes

The SQL CREATE DATABASE statement is used to create a new database in a SQL database management system.

2
SQL DROP DB
5 minutes

The SQL DROP DATABASE statement is used to delete an existing database from a SQL database management system.

3
SQL BACKUP DB
5 minutes

The SQL BACKUP DATABASE statement in SQL Server is used to create a backup of an entire database, including its data and schema.

4
SQL CREATE TABLE
5 minutes

The SQL CREATE TABLE statement is used to create a new table in a SQL database.

5
SQL DROP TABLE
5 minutes

The SQL DROP TABLE statement is used to delete a table from a database.

6
SQL ALTER TABLE
10 minutes

The SQL ALTER TABLE statement is used to modify an existing table structure in a database, allowing changes such as adding, deleting, or modifying columns, constraints, or indexes.

7
SQL Constraints
5 minutes

SQL constraints are utilized to define regulations governing data within a table.

8
SQL NOT NULL
5 minutes

The SQL NOT NULL constraint ensures that a column cannot contain null values.

9
SQL UNIQUE
5 minutes

The SQL UNIQUE constraint ensures that all values in a column are distinct.

10
SQL PRIMARY KEY
5 minutes

The SQL PRIMARY KEY constraint uniquely identifies each record in a table.

11
SQL FOREIGN KEY
5 minutes

The SQL FOREIGN KEY constraint establishes a link between two tables, enforcing referential integrity and ensuring values in one table correspond to values in another.

12
SQL CHECK
5 minutes

SQL CHECK is a constraint that ensures values inserted into a column meet a specified condition.

13
SQL DEFAULT
5 minutes

SQL DEFAULT is a clause that specifies a default value for a column when no explicit value is provided during an INSERT operation.

14
SQL INDEX
5 minutes

SQL CREATE INDEX is a statement used to create an index on one or more columns of a table, enabling faster data retrieval by organizing the data in a structured order.

15
SQL AUTO INCREMENT
5 minutes

SQL AUTO INCREMENT automatically generates unique values for a column upon insertion, typically used for primary keys.

16
SQL Dates
5 minutes

SQL Working With Dates involves manipulating and querying date and time data within a relational database management system (RDBMS), allowing operations like insertion, updating, retrieval, and comparison of date and time values.

17
SQL Views
5 minutes

SQL Views are virtual tables derived from the result of a stored query, allowing users to access and manipulate data stored in the underlying tables through a simplified and predefined perspective.

18
SQL Injection
5 minutes

SQL Injection is a cyber attack technique that exploits vulnerabilities in web applications by injecting malicious SQL code, allowing attackers to manipulate databases, steal data, or execute unauthorized actions.

19
SQL Hosting
5 minutes

SQL hosting refers to the provision of servers and infrastructure specifically designed for hosting and managing SQL databases, enabling users to store, access, and manipulate their data securely and efficiently over the internet.

20
SQL Data Types
10 minutes

The data type assigned to a column dictates the kind of values the column can store, such as integers, characters, monetary values, dates and times, binary data, and more.

SQL References

1
SQL Keywords
10 minutes

SQL keywords are reserved words used in Structured Query Language (SQL) to perform specific functions or operations within database queries and commands.

2
ADD
5 minutes

The ADD command is used to add a column in an existing table.

3
ADD CONSTRAINT
5 minutes

The ADD CONSTRAINT command creates a constraint after a table has been created.

4
ALL
5 minutes

The SQL ALL keyword compares a value to all values in a subquery or a list.

5
ALTER
5 minutes

Defines the SQL ALTER keyword as used for modifying database objects like tables, views, or indexes.

6
ALTER COLUMN
5 minutes

Defines the SQL ALTER COLUMN keyword for modifying the attributes of a column in a table.

7
ALTER TABLE
5 minutes

The SQL ALTER TABLE keyword facilitates modifications to the structure of an existing table. It enables actions such as adding, deleting, or modifying columns, as well as adding or removing constraints.

8
AND
5 minutes

Defines the SQL AND keyword, used to combine multiple conditions in a WHERE clause, all of which must be true for the row to be included in the result set.

9
ANY
5 minutes

Defines the SQL ANY keyword, which compares a value to a set of values returned by a subquery or a list.

10
AS
5 minutes

Defines the SQL AS keyword, used to rename a column or table in a query's result set.

11
ASC
5 minutes

The SQL ASC keyword is used to sort query results in ascending order based on the specified column.

12
BACKUP DATABASE
5 minutes

The SQL BACKUP DATABASE keyword is used to create a backup of the entire database, including all its tables and data.

13
BETWEEN
5 minutes

The SQL BETWEEN keyword is used to retrieve records where a specified value falls within a specified range.

14
CASE
5 minutes

The SQL CASE keyword is used to perform conditional logic within a query, allowing for the evaluation of multiple conditions and the execution of different actions based on those conditions.

15
CHECK
5 minutes

The SQL CHECK keyword is used to enforce specified conditions on the values that are entered into a column, ensuring data integrity within a table.

16
COLUMN
5 minutes

The SQL COLUMN keyword is used to specify the attributes or properties of a particular column in a table.

17
CONSTRAINT
5 minutes

The SQL CONSTRAINT keyword is used to define rules and restrictions for data stored in tables, ensuring data integrity and consistency.

18
CREATE
5 minutes

The SQL CREATE keyword is used to generate new database objects such as tables, indexes, views, or stored procedures.

19
CREATE DATABASE
5 minutes

The SQL CREATE DATABASE keyword is used to create a new database in a database management system.

20
CREATE INDEX
5 minutes

The SQL CREATE INDEX keyword is used to create an index on a table, which enhances the performance of queries by facilitating faster data retrieval based on the indexed columns.

21
CREATE OR REPLACE VIEW
5 minutes

SQL CREATE OR REPLACE VIEW is a statement used to create a new view or replace an existing one with the same name if it already exists, allowing for modifications to the view's definition without needing to drop and recreate it.

22
CREATE TABLE
5 minutes

SQL CREATE TABLE is a command used to create a new table in a database, specifying its structure, including column names, data types, and constraints.

23
CREATE PROCEDURE
5 minutes

SQL CREATE PROCEDURE is a statement used to define and store a reusable set of SQL statements that perform a particular task, which can be invoked multiple times with different parameters.

24
CREATE UNIQUE INDEX
5 minutes

SQL CREATE UNIQUE INDEX is a statement used to create an index on a table that ensures the uniqueness of values in one or more columns, preventing duplicate entries in those columns.

25
CREATE VIEW
5 minutes

SQL CREATE VIEW is a statement used to define a virtual table based on the result set of a SELECT query, allowing users to retrieve and manipulate data from the view as if it were a regular table.

26
DATABASE
5 minutes

SQL DATABASE Keyword is a command used to create, manipulate, and manage databases in a relational database management system (RDBMS).

27
DEFAULT
5 minutes

SQL DEFAULT Keyword is used to specify a default value for a column when no value is provided during insertion.

28
DELETE
5 minutes

SQL DELETE Keyword is used to remove one or more records from a table in a database.

29
DESC
5 minutes

SQL DESC Keyword is used to retrieve the structure of a table, including column names, data types, and constraints, in descending order.

30
DISTINCT
5 minutes

SQL SELECT DISTINCT Keyword is used to retrieve unique values from a specified column or columns in a table, eliminating duplicate entries.

31
DROP
5 minutes

SQL DROP Keyword is used to remove database objects such as tables, views, or indexes from a database.

32
DROP COLUMN
5 minutes

The SQL DROP COLUMN keyword is used to delete a column from an existing table in a database.

33
DROP CONSTRAINT
5 minutes

The SQL DROP CONSTRAINT keyword is used to remove a constraint (such as UNIQUE, PRIMARY KEY, FOREIGN KEY, etc.) from a table in a database.

34
DROP DATABASE
5 minutes

The SQL DROP DATABASE keyword is used to delete an entire database along with all its associated data and structures.

35
DROP DEFAULT
5 minutes

The SQL DROP DEFAULT keyword is used to remove a default value constraint from a column in a table.

36
DROP INDEX
5 minutes

The SQL DROP INDEX keyword is employed to delete an index from a database table.

37
DROP TABLE
5 minutes

SQL DROP TABLE deletes a table, while TRUNCATE TABLE empties it, removing all rows but keeping the table structure.

38
DROP VIEW
5 minutes

The SQL DROP VIEW keyword is used to delete a view from the database.

39
EXEC
5 minutes

The SQL EXEC keyword is used to execute stored procedures or functions in a database management system.

40
EXISTS
5 minutes

The SQL EXISTS keyword is a conditional operator that checks for the existence of a result set returned by a correlated subquery.

41
FOREIGN KEY
5 minutes

The SQL FOREIGN KEY keyword establishes a relationship between two tables, ensuring referential integrity by enforcing a link between a column in one table and a column in another table.

42
FROM
5 minutes

The SQL FROM keyword specifies the tables from which data should be retrieved or manipulated in a query.

43
FULL OUTER JOIN
5 minutes

The SQL FULL OUTER JOIN keyword combines the results of both the LEFT OUTER JOIN and the RIGHT OUTER JOIN, ensuring that all rows from both tables are included, with NULL values filled in for unmatched rows.

44
GROUP BY
5 minutes

The SQL GROUP BY keyword is used to arrange identical data into groups based on a specified column or expression, facilitating the application of aggregate functions to each group.

45
HAVING
5 minutes

The SQL HAVING keyword filters group rows based on specified conditions, used after the GROUP BY clause to apply conditions to groups created by the GROUP BY clause.

46
IN
5 minutes

The SQL IN keyword is a conditional operator that checks if a specified value matches any value in a list or a subquery.

47
INDEX
5 minutes

The SQL INDEX keyword is used to create and retrieve indexes, which are data structures that improve the speed of data retrieval operations on database tables by providing quick access paths to rows based on the values of one or more columns.

48
INNER JOIN
5 minutes

The SQL INNER JOIN keyword retrieves rows from both tables that satisfy the specified join condition.

49
INSERT INTO
5 minutes

The SQL INSERT INTO keyword is used to add new rows of data into a table.

50
INSERT INTO SELECT
5 minutes

The SQL INSERT INTO SELECT keyword is used to copy data from one table and insert it into another table.

51
IS NULL
5 minutes

The SQL IS NULL keyword is used to check if a value in a column is NULL.

52
IS NOT NULL
5 minutes

The SQL IS NOT NULL keyword is used to check if a value in a column is not NULL.

53
JOIN
5 minutes

The SQL JOIN keyword is used to combine rows from two or more tables based on a related column between them.

54
LEFT JOIN

The SQL LEFT JOIN keyword retrieves all rows from the left table and the matching rows from the right table, with unmatched rows from the right table filled with NULL values.

55
LIKE
5 minutes

The SQL LIKE keyword is used to search for a specified pattern within a column.

56
LIMIT
5 minutes

The SQL SELECT TOP, LIMIT, and ROWNUM keywords limit the number of rows returned in a query.

57
NOT
5 minutes

The SQL NOT keyword is a logical operator used to negate a condition in a WHERE clause, selecting rows that do not satisfy the specified condition.

58
NOT NULL
5 minutes

The SQL NOT NULL keyword is used to filter rows where a specified column does not contain NULL values.

59
OR
5 minutes

The SQL OR keyword is a logical operator used to combine multiple conditions in a WHERE clause, selecting rows that satisfy at least one of the specified conditions.

60
ORDER BY
5 minutes

The SQL ORDER BY keyword is used to sort the result set of a query in ascending or descending order based on one or more columns.

61
OUTER JOIN
5 minutes

The SQL FULL OUTER JOIN keyword retrieves all rows from both tables involved, matching rows where possible and filling in NULL values for unmatched rows.

62
PRIMARY KEY
5 minutes

The SQL PRIMARY KEY keyword is used to uniquely identify each record in a table and ensures that no duplicate values are allowed in the specified column or combination of columns.

63
PROCEDURE
5 minutes

The SQL CREATE PROCEDURE keyword is used to define and create a new stored procedure in a database.

64
RIGHT JOIN
5 minutes

The SQL RIGHT JOIN keyword retrieves all rows from the right table and the matching rows from the left table, with unmatched rows from the left side filled with NULL values.

65
ROWNUM
5 minutes

The SQL SELECT TOP, LIMIT, and ROWNUM keywords are used to restrict the number of rows returned in a query.

66
SELECT
5 minutes

The SQL SELECT keyword is used to retrieve data from a database.

67
SELECT DISTINCT
5 minutes

The SQL SELECT DISTINCT keyword is used to retrieve unique values from a specified column or columns in a database table.

68
SELECT INTO
5 minutes

The SQL SELECT INTO keyword is used to create a new table based on the result set of a SELECT statement.

69
SELECT TOP
5 minutes

The SQL SELECT TOP, LIMIT, and ROWNUM keywords are used to limit the number of rows returned in a query.

70
SET Keyword
5 minutes

The SQL SET keyword is used to assign values to variables in SQL queries or to update existing data in a table.

71
TABLE
5 minutes

The SQL TABLE keyword is used to create, modify, or drop a table in a database.

72
TOP
5 minutes

The SQL SELECT TOP, LIMIT, and ROWNUM keywords are used to restrict the number of rows returned in a query.

73
TRUNCATE TABLE

The SQL DROP TABLE keyword is used to delete a table and its data from the database, while the TRUNCATE TABLE keyword is used to remove all data from a table while retaining the table structure.

74
UNION
5 minutes

The SQL UNION keyword is used to combine the results of two or more SELECT statements into a single result set.

75
UNION ALL
5 minutes

The SQL UNION ALL keyword is used to combine the results of two or more SELECT statements into a single result set, including all duplicate rows.

76
UNIQUE
5 minutes

The SQL UNIQUE keyword is used to ensure that all values in a column are unique across the table.

77
UPDATE
5 minutes

The SQL UPDATE keyword is used to modify existing records in a database table.

78
VALUES
5 minutes

The SQL VALUES keyword is used to specify the values to be inserted into a table when using the INSERT INTO statement.

79
VIEW
5 minutes

The SQL VIEW keyword is used to create a virtual table based on the result set of a SELECT query.

80
WHERE
5 minutes

The SQL WHERE keyword is used to filter records based on a specified condition.

MySQL Functions

1
MySQL String Functions
5 minutes

MySQL encompasses an array of pre-existing functions across categories like strings, numerics, dates, and more, facilitating diverse functionalities within the database environment.

2
ASCII
5 minutes

ASCII, or American Standard Code for Information Interchange, is a character encoding standard used for representing text in computers and communication equipment.

3
CHAR_LENGTH
5 minutes

CHAR_LENGTH is a function that returns the number of characters in a string, excluding trailing spaces.

4
CHARACTER_LENGTH
5 minutes

CHARACTER_LENGTH is a function that calculates the number of characters in a string.

5
CONCAT
5 minutes

CONCAT is a function used in SQL to combine two or more strings into a single string.

6
CONCAT_WS
5 minutes

CONCAT_WS is a function used in SQL to combine multiple strings with a specified separator.

7
FIELD
5 minutes

FIELD is a function in SQL that returns the position of a string within a set of strings, or 0 if the string is not found.

8
FIND_IN_SET
5 minutes

FIND_IN_SET is a function in SQL that returns the position of a string within a comma-separated list of strings, or 0 if the string is not found.

9
FORMAT
5 minutes

FORMAT is a function in SQL used to format numbers with commas and a specified number of decimal places.

10
INSERT
5 minutes

INSERT is a SQL command used to add new rows of data into a database table.

11
INSTR
5 minutes

INSTR is a function used in programming languages like Visual Basic and VBA to search for the occurrence of one string within another, returning the position of the first occurrence or zero if not found.

12
LCASE
5 minutes

LCASE is a function used in programming languages like Visual Basic and VBA to convert a string to lowercase letters.

13
LEFT
5 minutes

LEFT is a function in programming languages like Excel and SQL used to extract a specified number of characters from the left side of a string.

14
LENGTH
5 minutes

LENGTH is a function used in programming languages such as SQL and JavaScript to determine the number of characters in a string or the number of elements in an array.

15
LOCATE
5 minutes

LOCATE is a function used in SQL to find the position of a substring within a string and returns the position of its first occurrence.

16
LOWER
5 minutes

LOWER is a function in SQL used to convert all characters in a string to lowercase.

17
LPAD
5 minutes

LPAD is a function used in SQL to pad a string with specified characters on the left side until it reaches a desired length.

18
LTRIM
5 minutes

LTRIM is a function in SQL used to remove leading spaces (spaces at the beginning) from a string.

19
MID
5 minutes

MID is a function used in some programming languages to extract a substring from a string, starting at a specified position and extending for a certain number of characters.

20
POSITION
5 minutes

POSITION is a function used in SQL to find the position of a substring within a string and returns the position of its first occurrence.

21
REPEAT
5 minutes

REPEAT is a function used in SQL to replicate a string a specified number of times.

22
REPLACE
5 minutes

REPLACE is a function used in SQL to replace all occurrences of a specified substring within a string with another substring.

23
REVERSE
5 minutes

REVERSE is a function used in SQL to reverse the characters in a string.

24
RIGHT
5 minutes

RIGHT is a function used in SQL to extract a specified number of characters from the right side of a string.

25
RPAD
5 minutes

RPAD is a function used in SQL to pad a string with specified characters on the right side until it reaches a desired length.

26
RTRIM
5 minutes

RTRIM is a function used in SQL to remove trailing spaces (spaces at the end) from a string.

27
SPACE
5 minutes

SPACE is a function used in SQL to generate a string consisting of a specified number of spaces.

28
STRCMP
5 minutes

STRCMP is a function that compares two strings and returns an integer value indicating their relative order.

29
SUBSTR
5 minutes

SUBSTR is a function that extracts a portion of a string, specified by a starting position and length, and returns it as a new string.

30
SUBSTRING
5 minutes

SUBSTRING is a function that extracts a portion of a string based on specified starting position and length parameters.

31
SUBSTRING_INDEX
5 minutes

SUBSTRING_INDEX is a function that extracts a substring from a string before a specified delimiter, with an option to specify which occurrence of the delimiter to use.

32
TRIM
5 minutes

TRIM is a function that removes leading and trailing spaces from a string.

33
UCASE
5 minutes

UCASE is a function that converts all characters in a string to uppercase.

34
UPPER
5 minutes

UPPER is a function that converts all characters in a string to uppercase.

35
ABS
5 minutes

ABS is a function that returns the absolute value of a number, removing its sign.

36
ACOS
5 minutes

ACOS is a function that returns the arccosine (inverse cosine) of a value, measured in radians, within the range [0, π].

37
ASIN
5 minutes

ASIN is a function that returns the arcsine (inverse sine) of a value, measured in radians, within the range [-π/2, π/2].

38
ATAN
5 minutes

ATAN is a function that returns the arctangent (inverse tangent) of a value, measured in radians, within the range [-π/2, π/2].

39
ATAN2
5 minutes

ATAN2 is a mathematical function that computes the arctangent of the quotient of its two arguments, ensuring correct quadrant placement.

40
AVG
5 minutes

AVG computes the arithmetic mean of a set of values, commonly used in statistical analysis to determine a central tendency.

41
CEIL
5 minutes

CEIL rounds a numeric value up to the nearest integer, and returns the result.

42
CEILING
5 minutes

CEILING rounds a numeric value up to the nearest integer, and returns the result.

43
COS
5 minutes

COS is a mathematical function that calculates the cosine of a given angle in radians.

44
COT
5 minutes

COT calculates the cotangent of an angle in radians, defined as the reciprocal of the tangent of an angle.

45
COUNT
5 minutes

COUNT is a function used to determine the number of non-null values in a set of values or records.

46
DEGREES
5 minutes

DEGREES is a mathematical function that converts an angle measured in radians to its equivalent in degrees.

47
DIV
5 minutes

DIV is an arithmetic operator used for integer division, returning the quotient without the remainder.

48
EXP
5 minutes

EXP is a mathematical function that returns the value of Euler's number (approximately 2.71828) raised to the power of a given number.

49
FLOOR
5 minutes

FLOOR is a mathematical function that rounds a numeric value down to the nearest integer, and returns the result.

50
GREATEST
5 minutes

GREATEST is a function that returns the largest value among a list of expressions.

51
LEAST
5 minutes

LEAST is a function that returns the smallest value from a list of arguments.

52
LN
5 minutes

LN stands for "Logarithm Natural," a mathematical function representing the exponent to which the base number (usually Euler's number, e ≈ 2.718) must be raised to produce a given number.

53
LOG
5 minutes

The LOG function calculates the logarithm of a number with a specified base.

54
LOG10
5 minutes

LOG10 is a mathematical function that computes the base-10 logarithm of a given number.

55
LOG2
5 minutes

LOG2 is a mathematical function that computes the base-2 logarithm of a given number.

56
MAX
5 minutes

MAX is a function used to determine the highest value among a set of numbers or expressions.

57
MIN
5 minutes

MIN is a function used to determine the lowest value among a set of numbers or expressions.

58
MOD
5 minutes

MOD is a mathematical function that computes the remainder when one number is divided by another.

59
PI
5 minutes

PI is a mathematical constant representing the ratio of a circle's circumference to its diameter, approximately equal to 3.14159.

60
POW
5 minutes

POW is a mathematical function used to calculate a number raised to the power of another number.

61
POWER
10 minutes

In SQL, the POWER function returns the result of raising a number to a specified exponent.

62
RADIANS
10 minutes

SQL radians function converts an angle in degrees to radians.

63
RAND
10 minutes

SQL RAND() function generates a random number.

64
ROUND
10 minutes

SQL ROUND() function returns a number rounded to a specified number of decimal places.

65
SIGN
10 minutes

SQL SIGN() function returns the sign of a number.

66
SIN
10 minutes

SQL SIN() function calculates the sine of an angle in radians.

67
SQRT
10 minutes

SQL SQRT is a mathematical function used to calculate the square root of a numeric value in a SQL query.

68
SUM
10 minutes

SQL SUM is an aggregate function used to calculate the total sum of numeric values in a specified column or expression within a SQL query.

69
TAN
10 minutes

SQL TAN is a trigonometric function used to calculate the tangent of an angle in a SQL query.

70
TRUNCATE
10 minutes

SQL TRUNCATE is a command used to remove all records from a table in a database, effectively resetting it while preserving its structure.

71
ADDDATE
10 minutes

SQL ADDDATE is a function that adds a specified number of days to a date, returning a new date value.

72
ADDTIME
10 minutes

SQL ADDTIME is a function used to add a specified time interval to a given time or datetime value.

73
CURDATE
10 minutes

SQL CURDATE is a function that returns the current date in the system's timezone.

74
CURRENT_DATE
10 minutes

SQL CURRENT_DATE is a function that returns the current date in the system's timezone.

75
CURRENT_TIME
10 minutes

SQL CURRENT_TIME is a function that returns the current time in the system's timezone.

76
CURRENT_TIMESTAMP
10 minutes

CURRENT_TIMESTAMP in SQL returns the current date and time of the database server.

77
CURTIME
10 minutes

CURTIME() in SQL returns the current time from the database server.

78
DATE
10 minutes

In SQL, DATE represents a data type for storing dates without any associated time information.

79
DATEDIFF
10 minutes

DATEDIFF in SQL calculates the difference in days between two dates.

80
DATE_ADD
10 minutes

DATE_ADD in SQL is a function used to add a specified time interval to a date.

81
DATE_FORMAT
10 minutes

DATE_FORMAT in SQL is a function used to format date and time values based on a specified format string.

82
DATE_SUB
10 minutes

DATE_SUB is a function in SQL used to subtract a specified time interval from a date.

83
DAY
10 minutes

In SQL, DAY is a function used to extract the day of the month from a given date.

84
DAYNAME
10 minutes

In SQL, DAYNAME is a function used to retrieve the name of the day of the week from a given date.

85
DAYOFMONTH
10 minutes

DAYOFMONTH is a function in SQL used to extract the day of the month from a given date.

86
DAYOFWEEK
10 minutes

DAYOFWEEK is a function in SQL used to extract the day of the week from a given date.

87
DAYOFYEAR
10 minutes

DAYOFYEAR is an SQL function used to extract the day of the year from a given date.

88
EXTRACT
10 minutes

EXTRACT is a SQL function used to retrieve a specific part (e.g., year, month, day) from a date or timestamp.

89
FROM_DAYS
10 minutes

FROM_DAYS is a function in MySQL that converts a day number into a date.

90
HOUR
10 minutes

HOUR is a SQL function used to extract the hour portion from a given time or timestamp.

91
LAST_DAY
10 minutes

LAST_DAY in SQL returns the last day of the month for a given date.

92
LOCALTIME
10 minutes

LOCALTIME in SQL returns the current date and time for the local time zone.

93
LOCALTIMESTAMP
10 minutes

LOCALTIMESTAMP in SQL retrieves the current date and time including fractional seconds, based on the local time zone.

94
MAKEDATE
10 minutes

MAKEDATE in SQL is used to construct a date from year and day of year values.

95
MAKETIME
10 minutes

MAKETIME in SQL is used to construct a time value from hour, minute, and second components.

96
MICROSECOND
10 minutes

MICROSECOND in SQL is a function that retrieves the microsecond part of a given time or datetime value.

97
MINUTE
10 minutes

MINUTE in SQL retrieves the minute component of a given time or datetime value.

98
MONTH
10 minutes

MONTH in SQL retrieves the month component of a given date or datetime value.

99
MONTHNAME
10 minutes

MONTHNAME in SQL is a function that retrieves the name of the month from a given date or datetime value.

100
NOW
10 minutes

NOW in SQL retrieves the current date and time.

101
PERIOD_ADD
10 minutes

PERIOD_ADD in SQL is a function used to add a number of months to a period in the format YYYYMM.

102
PERIOD_DIFF
10 minutes

PERIOD_DIFF in SQL calculates the difference in months between two periods in the format YYYYMM.

103
QUARTER
10 minutes

QUARTER in SQL is a function that returns the quarter of the year (1 to 4) for a given date.

104
SECOND
10 minutes

SECOND in SQL retrieves the second component of a given time or datetime value.

105
SEC_TO_TIME
10 minutes

SEC_TO_TIME in SQL converts a number of seconds into a time format (HH:MM).

106
STR_TO_DATE
10 minutes

STR_TO_DATE in SQL converts a string representation of a date and time into a proper datetime value using a specified format.

107
SUBDATE
10 minutes

SUBDATE is a MySQL function that subtracts a specified number of days, months, or years from a given date, producing a new date.

108
SUBTIME
10 minutes

SUBTIME is a MySQL function that subtracts a specified time interval from a given time or datetime value.

109
SYSDATE

SYSDATE is a function in databases like Oracle and MySQL that returns the current date and time from the system's clock.

110
TIME
10 minutes

TIME refers to the representation of the current time or a specific time of day in a given context, typically as a part of a date-time format.

111
TIME_FORMAT
10 minutes

TIME_FORMAT is a function in MySQL that converts a time value to a specified format.

112
TIME_TO_SEC
10 minutes

TIME_TO_SEC is a MySQL function that converts a time value into seconds. 

113
TIMEDIFF
10 minutes

TIMEDIFF is a MySQL function that calculates the difference between two time or datetime values.

114
TIMESTAMP
10 minutes

TIMESTAMP is a data type in SQL that stores both date and time values.

115
TO_DAYS
10 minutes

TO_DAYS is a function in MySQL that converts a date or datetime value to a numeric value representing days since year 0.

116
WEEK
10 minutes

WEEK is a function in SQL that returns the week number of a given date.

117
WEEKDAY
10 minutes

WEEKDAY is a function in SQL that returns the index of the weekday for a given date (0 = Monday, 6 = Sunday).

118
WEEKOFYEAR
10 minutes

WEEKOFYEAR is a function in SQL that returns the week number within a year for a given date.

119
YEAR
10 minutes

YEAR is a function in SQL that extracts the year from a date or datetime value.

120
YEARWEEK
10 minutes

YEARWEEK is a function in SQL that returns the year and week number concatenated together for a given date.

121
BIN
10 minutes

BIN is a MySQL function that converts a decimal number to its binary representation.

122
BINARY
10 minutes

BINARY is a keyword in SQL used to specify a binary string literal or to cast a string to a binary type.

123
CASE
10 minutes

CASE is a conditional expression in SQL used to evaluate multiple conditions and return a result based on them.

124
CAST
10 minutes

CAST is a SQL function used to convert a value from one data type to another.

125
COALESCE
10 minutes

COALESCE returns the first non-null value in a list of expressions.

126
CONNECTION_ID
10 minutes

CONNECTION_ID returns the ID of the current client connection in a database session.

127
CONV
10 minutes

CONV() converts a number from one numeric base to another.

128
CONVERT
10 minutes

CONVERT function changes a value from one data type to another in SQL.

129
CURRENT_USER
10 minutes

CURRENT_USER returns the username of the current database user.

130
DATABASE
10 minutes

DATABASE retrieves the name of the current database in use.

131
IF
10 minutes

IF is a control flow function that returns one value if a condition is true and another value if the condition is false.

132
IFNULL
10 minutes

In SQL, IFNULL is a function that returns a specified value if the given expression is NULL; otherwise, it returns the expression itself.

133
ISNULL
10 minutes

In SQL, ISNULL is a function that replaces NULL with a specified value.

134
LAST_INSERT_ID
10 minutes

LAST_INSERT_ID() is a function in SQL that returns the ID generated for the last AUTO_INCREMENT column in the current session.

135
NULLIF
10 minutes

NULLIF is a SQL function that returns NULL if two expressions are equal, otherwise it returns the first expression.

136
SESSION_USER
10 minutes

SESSION_USER is a SQL function that returns the name of the current database user for the session.

137
SYSTEM_USER
10 minutes

SYSTEM_USER is a SQL function that returns the login name of the current user in the database system.

138
USER
10 minutes

USER is a SQL function that returns the current user name in the context of the database system.

139
VERSION
10 minutes

VERSION is a SQL function that retrieves the version of the database system.

SQL Server Functions

1
SQL Server Functions
10 minutes

SQL Server functions are built-in operations that perform specific tasks, such as mathematical calculations, string manipulation, date and time operations, and data type conversions within SQL Server databases.

2
ASCII
10 minutes

ASCII is a standard encoding scheme that assigns numeric values to characters, allowing computers to represent and manipulate text.

3
CHAR
10 minutes

CHAR is a SQL function that returns the character corresponding to a specified ASCII code.

4
CHARINDEX
10 minutes

CHARINDEX is a SQL function that returns the starting position of a substring within a string expression.

5
CONCAT
10 minutes

CONCAT is a function that merges multiple strings into a single string.

6
Concat With +
10 minutes

Concatenate Using +: Combines two or more strings together in SQL.

7
CONCAT_WS
10 minutes

CONCAT_WS is a SQL function that concatenates multiple strings into a single string with a specified separator.

8
DATALENGTH
10 minutes

DATALENGTH is a SQL function that returns the number of bytes used to represent an expression or a column in bytes.

9
DIFFERENCE
10 minutes

DIFFERENCE is a SQL function that calculates a similarity score between two strings based on their differences in characters.

10
FORMAT
10 minutes

FORMAT is a SQL function that converts a value to a formatted string representation based on the specified format pattern.

11
LEFT
10 minutes

LEFT is a SQL function that retrieves a specified number of characters from the left side of a string.

12
LEN
10 minutes

Retrieve up to 100 characters from the beginning (left side) of a string.

13
LOWER
10 minutes

LOWER is a Python string method that returns a copy of the string with all characters converted to lowercase.

14
LTRIM
10 minutes

LTRIM is a function that removes leading whitespace characters from a string.

15
NCHAR
10 minutes

NCHAR is a SQL Server function that returns the Unicode character based on the specified integer code.

16
PATINDEX
10 minutes

PATINDEX is a SQL Server function that returns the starting position of a pattern in a string.

17
QUOTENAME
10 minutes

QUOTENAME is a SQL Server function that returns a string with delimiters added to ensure the string is safely used in a SQL statement as a quoted identifier.

18
REPLACE
10 minutes

REPLACE is a SQL Server function that replaces all occurrences of a specified substring within a string with another substring.

19
REPLICATE
10 minutes

REPLICATE is a SQL Server function that duplicates a specified string a specified number of times, returning the result.

20
REVERSE
10 minutes

REVERSE is a SQL Server function that reverses the characters in a string and returns the result.

21
RIGHT
10 minutes

"RIGHT" refers to a moral, legal, or ethical entitlement to have or do something.

22
RTRIM
10 minutes

"RTRIM" is a function that removes trailing spaces from the end of a string.

23
SOUNDEX
10 minutes

SOUNDEX is a function in SQL that converts a string to a four-character code based on its pronunciation.

24
SPACE
10 minutes

"SPACE" refers to an area or gap between objects or points, often used to denote physical or conceptual separation.

25
STR
10 minutes

In SQL, "STR" is a function used to convert a number to a string format with a specified length and optional decimal places.

26
STUFF
10 minutes

"STUFF" is a SQL function used to replace a portion of a string with another string at a specified starting point and for a specified length.

27
SUBSTRING
10 minutes

"SUBSTRING" is a SQL function used to extract a portion of a string based on a specified starting position and length.

28
TRANSLATE
10 minutes

In SQL Server, TRANSLATE is a function that replaces a set of characters in a string with another set of characters.

29
TRIM
10 minutes

SQL TRIM function removes leading and trailing spaces (or other specified characters) from a string.

30
UNICODE
10 minutes

UNICODE is a computing standard that assigns numeric codes to characters in various writing systems for representation in digital devices.

31
UPPER
10 minutes

UPPER is a SQL function that converts all characters in a string to uppercase.

32
ABS
10 minutes

ABS is a SQL function that returns the absolute (non-negative) value of a numeric expression.

33
ACOS
10 minutes

ACOS is a mathematical function in SQL that returns the arccosine (inverse cosine) of a number, which represents the angle in radians whose cosine is the specified number.

34
ASIN
10 minutes

ASIN is a mathematical function in SQL that returns the arcsine (inverse sine) of a number, representing the angle in radians whose sine is the specified number.

35
ATAN
10 minutes

ATAN is a mathematical function in SQL that returns the arctangent (inverse tangent) of a number, representing the angle in radians whose tangent is the specified number.

36
ATN2
10 minutes

ATN2 is a mathematical function in SQL that returns the arctangent of two variables, representing the angle in radians between the positive x-axis and the point (x, y) in a Cartesian coordinate system.

37
AVG
10 minutes

AVG is a SQL aggregate function that calculates the average value of a numeric column or expression.

38
CEILING
10 minutes

CEILING function in computing typically refers to a mathematical operation that rounds a number up to the nearest integer or specified multiple.

39
COUNT
10 minutes

COUNT function in computing calculates the number of items in a collection or dataset, often used to tally occurrences or elements.

40
COS
10 minutes

COS function computes the cosine of an angle in radians, yielding a ratio of the adjacent side to the hypotenuse in a right triangle

41
COT
10 minutes

Calculate and return the cosine value for a specified number.

42
DEGREES
10 minutes

DEGREES function converts radians to degrees in trigonometry, physics, and other fields requiring angular measurement in degrees.

43
EXP
10 minutes

EXP function computes the exponential value ee raised to a specified power, where ee is the base of natural logarithms (approximately 2.71828).

44
FLOOR
10 minutes

FLOOR function in computing calculates the largest integer less than or equal to a given number or expression.

45
LOG
10 minutes

LOG function computes the natural logarithm of a number, providing the exponent to which the base ee (approximately 2.71828) must be raised to obtain that number.

46
LOG10
10 minutes

LOG10 function computes the base-10 logarithm of a number, providing the exponent to which 10 must be raised to obtain that number.

47
MAX
10 minutes

MAX function retrieves the highest value from a set of values or a column in a database table.

48
MIN
10 minutes

MIN function retrieves the lowest value from a set of values or a column in a database table.

49
PI
10 minutes

SQL PI refers to the built-in constant in SQL Server that represents the mathematical constant π (pi), approximately equal to 3.14159.

50
POWER
10 minutes

SQL POWER function computes a number raised to the power of another number, yielding the result of the exponentiation operation.

51
RADIANS
10 minutes

SQL RADIANS function converts degrees to radians for trigonometric calculations.

52
RAND
10 minutes

RAND function generates a random number between 0 (inclusive) and 1 (exclusive).

53
ROUND
10 minutes

SQL ROUND function rounds a numeric value to a specified precision or the nearest integer.

54
SIGN
10 minutes

SIGN function returns the sign of a number, indicating whether it is positive, negative, or zero.

55
SIN
10 minutes

SIN function computes the sine of an angle given in radians.

56
SQRT
10 minutes

SQL SQRT function calculates the square root of a numeric value.

57
SQUARE
10 minutes

SQL SQUARE function computes the square of a number, yielding the result of multiplying the number by itself.

58
SUM
10 minutes

SQL SUM function calculates the total sum of values in a column or a set of values.

59
TAN
10 minutes

SQL TAN function computes the tangent of an angle given in radians.

60
CURRENT_TIMESTAMP
10 minutes

CURRENT_TIMESTAMP function retrieves the current date and time at the time of execution in SQL

61
DATEADD
10 minutes

SQL DATEADD function adds a specified time interval to a date and returns a new date.

62
DATEDIFF
10 minutes

DATEDIFF function calculates the difference between two dates, returning the result in a specified date part unit (such as days, months, years).

63
DATEFROMPARTS
10 minutes

Constructs a date value from its parts such as year, month, and day in SQL Server

64
DATENAME
10 minutes

DATENAME function retrieves the name of a specified date part from a date

65
DATEPART
10 minutes

DATEPART function extracts a specific part (such as year, month, day) from a date or datetime value in SQL.

66
DAY
10 minutes

DAY stands for "Data, Action, and Year," emphasizing the importance of information, activity, and time in achieving goals.

67
GETDATE
10 minutes

GETDATE() returns the current date and time of the system where the SQL query is executed.

68
GETUTCDATE
10 minutes

GETUTCDATE() returns the current date and time in Coordinated Universal Time (UTC) from the database system.

69
ISDATE
10 minutes

ISDATE() checks if a given expression can be interpreted as a valid date.

70
MONTH
10 minutes

A month is a unit of time, approximately four weeks or 30-31 days, used in calendars to organize the year.

71
SYSDATETIME
10 minutes

SYSDATETIME is a function in SQL Server that returns the current date and time on the server.

72
YEAR
10 minutes

In SQL, YEAR refers to the function or attribute used to extract or manipulate the year component from a date or datetime value.

73
CAST
10 minutes

In SQL, CAST is used to convert one data type into another, providing flexibility in data manipulation and querying.

74
COALESCE
10 minutes

In SQL, COALESCE is a function used to return the first non-null expression among its arguments.

75
CONVERT
10minutes

CONVERT is a SQL function used to convert a value from one data type to another, with optional formatting specifications.

76
CURRENT_USER
10 minutes

CURRENT_USER in SQL returns the username of the current database context.

77
IIF
10 minutes

IIF is a SQL function that evaluates a specified condition and returns one value if the condition is true, or another value if the condition is false.

78
ISNULL
10 minute

ISNULL is a SQL function used to replace NULL values with a specified replacement value.

79
ISNUMERIC
10 minutes

ISNUMERIC is a SQL function that checks whether a specified expression can be converted to a numeric data type.

80
NULLIF
10 minutes

NULLIF is a SQL function that compares two expressions and returns NULL if they are equal, or the first expression if they are not equal.

81
SESSION_USER
10 minutes

SESSION_USER in SQL returns the login name of the current session.

82
SESSIONPROPERTY
10 minutes

SESSIONPROPERTY is a SQL function used to retrieve various properties of the current session in SQL Server, such as isolation level or session options.

83
SYSTEM_USER
10 minutes

SYSTEM_USER in SQL returns the login name of the current user in the database context.

84
USER_NAME
10 minutes

USER_NAME in SQL returns the database user name associated with a specified user ID.

MS Access Functions

1
MS Access Functions
10 minutes

SQL MS Access Functions refer to built-in functions specific to Microsoft Access databases, providing capabilities for data manipulation, calculations, and querying within Access SQL queries.

2
Asc
10 minutes

Asc is a function in SQL that returns the ASCII value of the first character in a string expression.

3
Chr
10 minutes

Chr is a function in SQL that returns the character associated with the specified ASCII code.

4
Concat With &
10 minutes

Concat with & in SQL concatenates multiple strings or values into a single string.

5
CurDir
10 minutes

CurDir is a function in SQL that retrieves the current directory path.

6
Format
10 minutes

Format is a function in SQL that formats a value with the specified format mask.

7
InStr
10 minutes

InStr is a function in Visual Basic for Applications (VBA) that returns the position of the first occurrence of a substring within a string.

8
InstrRev
10 minutes

InStrRev is a function in Visual Basic for Applications (VBA) that returns the position of the last occurrence of a substring within a string, searching from the end to the start.

9
LCase
10 minutes

LCase is a function in Visual Basic for Applications (VBA) that converts a string to lowercase.

10
Left
10 minutes

Left is a function in Visual Basic for Applications (VBA) that retrieves a specified number of characters from the left side of a string.

11
Len
10 minutes

Len is a function in Visual Basic for Applications (VBA) that returns the number of characters in a string.

12
LTrim
10 minutes

LTrim is a function in Visual Basic for Applications (VBA) that removes leading spaces from a string.

13
Mid
10 minutes

Mid is a function in Visual Basic for Applications (VBA) that extracts a specified number of characters from a string, starting at a specified position.

14
Replace
10 minutes

SQL (Structured Query Language) is a standardized programming language used for managing and manipulating relational databases.

15
Right
10 minutes

SQL (Structured Query Language) is a standard language for accessing and manipulating databases.

16
RTrim
10 minutes

RTrim is a function in SQL that removes trailing spaces from a string.

17
Space
10 minutes

The Space function returns a string consisting of a specified number of spaces.

18
Split
10 minutes

SQL SPLIT typically refers to a function or operation that divides a string into substrings based on a specified delimiter.

19
Str
10 minutes

SQL STR function typically converts a number to a string representation.

20
StrComp
10 minutes

StrComp is a function in SQL used to compare two strings and return a value indicating their relationship based on specified comparison options.

21
StrConv
10 minutes

StrConv is a function in SQL used to convert a string to a specified case, such as uppercase or lowercase.

22
StrReverse
10 minutes

StrReverse is a function in SQL that reverses the characters in a string.

23
Trim
10 minutes

Trim is a function in SQL used to remove leading and trailing spaces (or other specified characters) from a string.

24
UCase
10 minutes

UCase converts all characters in a string to uppercase.

25
Abs
10 minutes

Abs returns the absolute (non-negative) value of a number.

26
Atn
10 minutes

Atn computes the arctangent of a number, returning the angle in radians.

27
Avg
10 minutes

Avg calculates the average (mean) value of a set of numbers.

28
Cos
10 minutes

Cos calculates the cosine of an angle in radians.

29
Count
10 minutes

Count calculates the number of records that meet specified criteria in a database query.

30
Exp
10 minutes

Exp calculates the exponential value of a number in SQL.

31
Fix
10 minutes

Fix rounds a number down to the nearest integer.

32
Format
10 minutes

Format converts a value to a specified format using a formatting expression.

33
Int
10 minutes

Int returns the integer part of a number, truncating any decimal digits.

34
Max
10 minutes

In SQL, the MAX() function returns the highest value from a specified column.

35
Min
10 minutes

In SQL, the MIN() function returns the lowest value from a specified column.

36
Randomize
10 minutes

Randomize initializes the random number generator to produce different sequences of random numbers each time it is called.

37
Rnd
10 minutes

Rnd function: Generates a random number between 0 (inclusive) and 1 (exclusive).

38
Round
10 minutes

SQL ROUND function: Rounds a numeric value to a specified number of decimal places.

39
Sgn
10 minutes

SQL SGN function: Returns the sign of a number, indicating whether it is positive, negative, or zero.

40
Sqr
10 minutes

SQL SQR function: Computes the square root of a number.

41
Sum
10 minutes

In SQL, SUM is a function used to calculate the total of numeric values in a column.

42
Val
10 minutes

SQL VAL isn't a standard function or keyword. It seems you might be referring to something specific or it could be a typo. 

43
Date
10 minutes

In SQL, DATE refers to a data type that stores date values.

44
DateAdd
10 minutes

In SQL, DATEADD adds a specified time interval to a date and returns the resulting date.

45
DateDiff
10 minutes

In SQL, DATEDIFF calculates the difference between two dates in terms of a specified time interval.

46
DatePart
10 minutes

In SQL, DATEPART is a function used to extract a specific part (such as year, month, day) from a date or datetime value.

47
DateSerial
10 minutes

In SQL, DateSerial is not a standard function. It seems you might be referring to a function from another programming language or context.

48
DateValue
10 minutes

In SQL, there is no DateValue function. If you are referring to a function in a different context or language, please specify.

49
Day
10 minutes

In SQL, DAY is a function that returns the day of the month from a date.

50
Format
10 minutes

In SQL, FORMAT is a function that formats a value according to a specified format.

51
Hour
10 minutes

In SQL, Hour is a function that extracts the hour component from a datetime expression or converts a string representation of time into an integer hour value.

52
Minute
10 minutes

In SQL, Minute is a function that extracts the minute component from a datetime expression or converts a string representation of time into an integer minute value.

53
Month
10 minutes

In SQL, Month is a function that retrieves the month component from a date or datetime expression, returning an integer between 1 and 12 representing the month of the year.

54
MonthName
10 minutes

In SQL, MonthName is typically a function that returns the name of the month based on a specified integer month value or datetime expression.

55
Now
10 minutes

Retrieve the current date and time from the computer system.

56
Second
10 minutes

In SQL, Second is a function that retrieves the second component from a datetime expression or converts a string representation of time into an integer second value.

57
Time
10 minutes

In SQL, Time typically refers to a data type that represents a specific time of day without a date component, or it can refer to functions that manipulate time-related data.

58
TimeSerial
10 minutes

In SQL, TimeSerial is typically a function used to create a time value based on provided hours, minutes, and seconds.

59
TimeValue
10 minutes

In SQL, TimeValue typically refers to a function that converts a string representation of time into a time data type.

60
Weekday
10 minutes

In SQL, Weekday typically refers to a function that returns an integer representing the day of the week for a given date.

61
WeekdayName
10 minutes

In SQL, WeekdayName typically refers to a function that retrieves the name of the weekday based on a specified numeric weekday value or datetime expression.

62
Year
10 minutes

In SQL, Year typically refers to a function that extracts the year component from a date or datetime expression, returning an integer representing the year.

63
CurrentUser
10 minutes

The CURRENT_USER function in SQL returns the name of the current user in the database session.

64
Environ
10 minutes

Environ is a data structure in computing that contains environment variables, which are dynamic values used by processes to retrieve system configuration details and control their execution environment.

65
IsDate
10 minutes

The SQL ISDATE function checks if an expression is a valid date, returning 1 if true and 0 if false.

66
IsNull
10 minutes

In SQL, IsNull is a function used to determine if a specified expression is NULL, returning true (1) if it is, and false (0) if it isn't.

67
IsNumeric
10 minutes

IsNumeric is a SQL function used to determine if a given expression can be interpreted as a numeric value.

SQL Quick Ref

1
SQL Quick Ref
10 minutes

"SQL Quick Ref" typically refers to a quick reference guide for SQL, summarizing key syntax, functions, and commands for quick consultation.

Be the first to add a review.

Please, login to leave a review
Start course
Enrolled: 449 students
Lectures: 433
Level: Beginner

Archive

Working hours

Monday 9:30 am - 6.00 pm
Tuesday 9:30 am - 6.00 pm
Wednesday 9:30 am - 6.00 pm
Thursday 9:30 am - 6.00 pm
Friday 9:30 am - 5.00 pm
Saturday Closed
Sunday Closed
SQL
Category: