dev-notes/docs/databases/sql.md

280 lines
6.6 KiB
Markdown
Raw Permalink Normal View History

2021-01-31 11:05:37 +01:00
# SQL
## DDL
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
show databases; -- mostra database
2021-09-20 19:35:32 +02:00
CREATE DATABASE <database>; -- database creation
2021-01-31 11:05:37 +01:00
use <database_name>; -- usa un database particolare
exit; -- exit mysql
show tables; -- mostra tabelle del database
-- INLINE COMMENT
/* MULTI-LINE COMMENT */
```
### Table Creation
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
CREATE TABLE <table_name>
(<field_name> <field_type> <option>,
...);
```
### PRIMARY KEY from multiple fields
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
CREATE TABLE <table_name>(
...,
PRIMARY KEY (<field1>, ...),
);
```
### Table Field Options
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
PRIMARY KEY -- marks primary key as field option
NOT NULL -- marks a necessary field
REFERENCES <table> (<field>) -- adds foreign key reference
UNIQUE (<field>) -- set field as unique (MySQL)
<field> UNIQUE -- T-SQL
```
### Table Modification
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
ALTER TABLE <table>
ADD PRIMARY KEY (<field>, ...), -- definition of PK after table creation
ADD <field_name> <field_type> <option>; -- addition of a new field, field will have no value in the table
ALTER TABLE <table>
CHANGE <field_name> <new_name> <new_type>;
ALTER COLUMN <field_name> <new_name> <new_type>; -- T-SQL
ALTER TABLE <table>
DROP <field>;
ALTER TABLE <table>
ADD FOREIGN KEY (<field>) REFERENCES <TABLE> (<FIELD>);
```
## DML
### Data Insertion
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
INSERT INTO <table> (field_1, ...) VALUES (value_1, ...), (value_1, ...);
2021-09-20 19:35:32 +02:00
INSERT INTO <table> VALUES (value_1, ...), (value_1, ...); -- field order MUST respect tables's columns order
2021-01-31 11:05:37 +01:00
```
### Data Update
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
UPDATE <table> SET <field> = <value>, <field> = <value>, ... WHERE <condition>;
```
### Data Elimination
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
DELETE FROM <table> WHERE <condition>
DELETE FROM <table> -- empty the table
```
## Data Selection
2022-11-05 21:49:27 +01:00
`*`: denotes all table fields
2021-01-31 11:05:37 +01:00
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
SELECT * FROM <table>; -- show table contents
SHOW columns FROM <table>; -- show table columns
DESCRIBE <table>; -- shows table
```
2021-09-20 19:35:32 +02:00
### Alias
2021-01-31 11:05:37 +01:00
2024-06-16 19:14:59 +02:00
```sql
2021-09-20 19:35:32 +02:00
SELECT <field> as <alias>; -- shows <field/funzione> with name <alias>
2021-01-31 11:05:37 +01:00
```
2021-09-20 19:35:32 +02:00
### Conditional Selection
2021-01-31 11:05:37 +01:00
2024-06-16 19:14:59 +02:00
```sql
2021-09-20 19:35:32 +02:00
SELECT * FROM <table> WHERE <condition>; -- shows elements that satisfy the condition
AND, OR, NOT -- logic connectors
2021-01-31 11:05:37 +01:00
SELECT * FROM <table> WHERE <field> Between <value_1> AND <value_2>;
```
2021-09-20 19:35:32 +02:00
### Ordering
2021-01-31 11:05:37 +01:00
2024-06-16 19:14:59 +02:00
```sql
2021-09-20 19:35:32 +02:00
SELECT * FROM <table> ORDER BY <field>, ...; -- shows the table ordered by <field>
SELECT * FROM <table> ORDER BY <field>, ... DESC; -- shows the table ordered by <field>, decreasing order
SELECT * FROM <table> ORDER BY <field>, ... LIMIT n; -- shows the table ordered by <field>, shows n items
2021-01-31 11:05:37 +01:00
SELECT TOP(n) * FROM <table> ORDER BY <field>, ...; -- T-SQL
```
2021-09-20 19:35:32 +02:00
## Grouping
2021-01-31 11:05:37 +01:00
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
SELECT * FROM <table> GROUP BY <field>;
SELECT * FROM <table> GROUP BY <field> HAVING <condition>;
2021-09-20 19:35:32 +02:00
SELECT DISTINCT <field> FROM <table>; -- shows elements without repetitions
2021-01-31 11:05:37 +01:00
```
### Ricerca caratteri in valori
2022-11-05 21:49:27 +01:00
`%`: any number of characters
2021-01-31 11:05:37 +01:00
2024-06-16 19:14:59 +02:00
```sql
2021-09-20 19:35:32 +02:00
SELECT * FROM <table> WHERE <field> LIKE '<char>%'; -- selects items in <field> that start with <char>
SELECT * FROM <table> WHERE <field> LIKE '%<char>'; -- selects items in <field> that end with <char>
SELECT * FROM <table> WHERE <field> LIKE '%<char>%'; -- selects items in <field> that contain <char>
SELECT * FROM <table> WHERE <field> NOT LIKE '%<char>%'; -- selects items in <field> that do not contain <char>
2021-01-31 11:05:37 +01:00
```
### Selection from multiple tables
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
SELECT a.<field>, b.<field> FROM <table> AS a, <table> AS b
WHERE a.<field> ...;
```
2021-09-20 19:35:32 +02:00
## Functions
2021-01-31 11:05:37 +01:00
2024-06-16 19:14:59 +02:00
```sql
2021-09-20 19:35:32 +02:00
SELECT COUNT(*) FROM <field>; -- count of items in <field>
SELECT MIN(*) FROM <table>; -- min value
SELECT MAX(*) FROM <table>; -- max value
SELECT AVG(*) FROM <table>; -- mean of values
2021-01-31 11:05:37 +01:00
ALL (SELECT ...)
ANY (SELECT ...)
```
2021-09-20 19:35:32 +02:00
## Nested Queries
2021-01-31 11:05:37 +01:00
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
SELECT * FROM <table> WHERE EXISTS (SELECT * FROM <table>) -- selected field existing in subquery
SELECT * FROM <table> WHERE NOT EXISTS (SELECT * FROM <table>) -- selected field not existing in subquery
```
## New table from data
Create new table with necessary fields:
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
CREATE TABLE <table> (
(<field_name> <field_type> <option>,
...);
)
```
Fill fields with data from table:
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
INSERT INTO <table>
SELECT <fields> FROM <TABLE> WHERE <condition>;
```
## Join
2024-06-16 19:14:59 +02:00
```sql
2021-09-20 19:35:32 +02:00
SELECT * FROM <table1> JOIN <table2> ON <table1>.<field> = <table2>.<field>;
SELECT * FROM <table1> LEFT JOIN <table2> ON <condition>;
SELECT * FROM <table1> RIGHT JOIN <table2> ON <condition>
2021-01-31 11:05:37 +01:00
```
[Inner Join, Left Join, Right Join, Full Outer Join](https://www.diffen.com/difference/Inner_Join_vs_Outer_Join)
## Multiple Join
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
SELECT * FROM <table1>
JOIN <table2> ON <table1>.<field> = <table2>.<field>
JOIN <table3> ON <table2>.<field> = <table3>.<field>;
```
[char, nchar, varchar, nvarchar](https://stackoverflow.com/questions/176514/what-is-the-difference-between-char-nchar-varchar-and-nvarchar-in-sql-server)
2021-09-20 19:35:32 +02:00
---
2021-01-31 11:05:37 +01:00
## T-SQL (MSSQL Server)
### T-SQL Insert From table
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
USE [<db_name>]
SET IDENTITY_INSERT [<destination_table>] ON
INSERT INTO <table> (field_1, ...)
SELECT (field_1, ...) FROM <source_table>
SET IDENTITY_INSERT [<destination_table>] OFF
```
### T-SQL Parametric Query
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
-- variable declaration
DECLARE @var_name <type>
-- init variable (input parameter)
SET @var_name = <value>
-- use in query (memorize data)
2021-09-20 19:35:32 +02:00
SELECT @var_name = COUNT(*) -- query won't show results in the "table view" since param is used in SELECT
2021-01-31 11:05:37 +01:00
FROM <table> ...
-- display message (query won't show results in the "table view")
PRINT 'Text: ' + @var_name
PRINT 'Text: ' + CONVERT(type, @var_name) -- convert data before printing
GO
```
### T-SQL View
A view represents a virtual table. Join multiple tables in a view and use the view to present the data as if the data were coming from a single table.
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
CREATE VIEW <name> AS
SELECT * FROM <table> ...
```
### T-SQL Stored Procedure
[Stored Procedure How-To](https://docs.microsoft.com/en-us/sql/relational-databases/stored-procedures/create-a-stored-procedure "Create a Stored Procedure - Microsoft Docs")
[T-SQL Stored Procedure](https://docs.microsoft.com/en-us/sql/t-sql/statements/create-procedure-transact-sql)
Stored Procedure Definition:
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
CREATE PROCEDURE <Procedure_Name>
-- Add the parameters for the stored procedure here
<@Param1> <Datatype_For_Param1> = <Default_Value_For_Param1>,
<@Param2> <Datatype_For_Param2>
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from interfering with SELECT statements.
2021-09-20 19:35:32 +02:00
SET NOCOUNT ON; -- don't return number of selected rows
2021-01-31 11:05:37 +01:00
-- Insert statements for procedure here
SELECT ...
END
GO
```
Stored Procedure call in query:
2024-06-16 19:14:59 +02:00
```sql
2021-01-31 11:05:37 +01:00
USE <database>
GO
-- Stored Procedure call
EXECUTE <Procedure_Name>
-- or
EXEC <Procedure_Name>
```