A3:2021 | SQL Injection Advanced (2) | Cycubix Docs
Special Characters
Special Statements
Union
The Union operator is used, to combine the results of two or more SELECT Statements.
Rules to keep in mind, when working with a UNION:
The number of columns selected in each statement must be the same.
The datatype of the first column in the first SELECT statement, must match the datatype of the first column in the second (third, fourth, …) SELECT Statement. The Same applies to all other columns.
The UNION ALL Syntax also allows duplicate Values.
Joins
The Join operator is used to combine rows from two or more tables, based on a related column
For more detailed information about JOINS visit: https://www.w3schools.com/sql/sql_join.asp
PreviousA3:2021 | SQL Injection Advanced (1) | Cycubix DocsNextA3:2021 | SQL Injection Advanced (3) | Cycubix Docs
Last updated