diff --git a/docs/database/sql.md b/docs/database/sql.md index db22dd3..1870cbb 100644 --- a/docs/database/sql.md +++ b/docs/database/sql.md @@ -1,7 +1,5 @@ # SQL -`mysql -u root`: avvio mysql come utente root - ## DDL ```sql @@ -85,7 +83,7 @@ DELETE FROM -- empty the table ## Data Selection -`*` Indica tutti i campi +`*`: denotes all table fields ```sql SELECT * FROM
; -- show table contents @@ -127,7 +125,7 @@ SELECT DISTINCT FROM
; -- shows elements without repetitions ### Ricerca caratteri in valori -`%` 0+ caratteri +`%`: any number of characters ```sql SELECT * FROM
WHERE LIKE '%'; -- selects items in that start with