mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 18:36:41 +00:00
fix(sql): translation
This commit is contained in:
parent
503556fb96
commit
cd26247ae8
1 changed files with 2 additions and 4 deletions
|
@ -1,7 +1,5 @@
|
|||
# SQL
|
||||
|
||||
`mysql -u root`: avvio mysql come utente root
|
||||
|
||||
## DDL
|
||||
|
||||
```sql
|
||||
|
@ -85,7 +83,7 @@ DELETE FROM <table> -- empty the table
|
|||
|
||||
## Data Selection
|
||||
|
||||
`*` Indica tutti i campi
|
||||
`*`: denotes all table fields
|
||||
|
||||
```sql
|
||||
SELECT * FROM <table>; -- show table contents
|
||||
|
@ -127,7 +125,7 @@ SELECT DISTINCT <field> FROM <table>; -- shows elements without repetitions
|
|||
|
||||
### Ricerca caratteri in valori
|
||||
|
||||
`%` 0+ caratteri
|
||||
`%`: any number of characters
|
||||
|
||||
```sql
|
||||
SELECT * FROM <table> WHERE <field> LIKE '<char>%'; -- selects items in <field> that start with <char>
|
||||
|
|
Loading…
Add table
Reference in a new issue