mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56: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
|
# SQL
|
||||||
|
|
||||||
`mysql -u root`: avvio mysql come utente root
|
|
||||||
|
|
||||||
## DDL
|
## DDL
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
|
@ -85,7 +83,7 @@ DELETE FROM <table> -- empty the table
|
||||||
|
|
||||||
## Data Selection
|
## Data Selection
|
||||||
|
|
||||||
`*` Indica tutti i campi
|
`*`: denotes all table fields
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
SELECT * FROM <table>; -- show table contents
|
SELECT * FROM <table>; -- show table contents
|
||||||
|
@ -127,7 +125,7 @@ SELECT DISTINCT <field> FROM <table>; -- shows elements without repetitions
|
||||||
|
|
||||||
### Ricerca caratteri in valori
|
### Ricerca caratteri in valori
|
||||||
|
|
||||||
`%` 0+ caratteri
|
`%`: any number of characters
|
||||||
|
|
||||||
```sql
|
```sql
|
||||||
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 start with <char>
|
||||||
|
|
Loading…
Add table
Reference in a new issue