informatique:sql
Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
informatique:sql [25/10/2015 12:15] – [Articles] cyrille | informatique:sql [23/01/2025 17:34] (Version actuelle) – [Sql Join] update avec join cyrille | ||
---|---|---|---|
Ligne 7: | Ligne 7: | ||
Cours SQL: | Cours SQL: | ||
* [[http:// | * [[http:// | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
- | Optimisation MySQL Par Laurent DECORPS \\ | ||
- | http:// | ||
- | |||
- | Optimisation MySQL | ||
- | http:// | ||
- | Autres conseils d' | ||
- | http:// | ||
===== Tips ===== | ===== Tips ===== | ||
+ | |||
+ | ==== Sql Join ==== | ||
+ | |||
+ | * (INNER) JOIN: Select records that have matching values in both tables. | ||
+ | * LEFT (OUTER) JOIN: Select records from the first (left-most) table with matching right table records. | ||
+ | * RIGHT (OUTER) JOIN: Select records from the second (right-most) table with matching left table records. | ||
+ | * FULL (OUTER) JOIN: Selects all records that match either left or right table records. | ||
+ | * All INNER and OUTER keywords are optional | ||
+ | |||
+ | Docs: | ||
+ | * [[https:// | ||
+ | * [[https:// | ||
+ | |||
+ | Et pour un '' | ||
+ | |||
+ | <code sql> | ||
+ | UPDATE `table_a` a | ||
+ | LEFT JOIN `table_b` b ON a.id = b.id | ||
+ | SET a.password = ' | ||
+ | WHERE b.id = 195812 | ||
+ | </ | ||
==== Données Hiérarchiques (Nested Categories) ==== | ==== Données Hiérarchiques (Nested Categories) ==== | ||
Ligne 49: | Ligne 65: | ||
ou encore: sélection des lignes orphelines. | ou encore: sélection des lignes orphelines. | ||
- | === Question | + | **Question** |
I've got a SELECT query that I would like to transform as a DELETE query , | I've got a SELECT query that I would like to transform as a DELETE query , | ||
Ligne 77: | Ligne 93: | ||
Have you got a idea about it ??? | Have you got a idea about it ??? | ||
- | === Answer | + | **Answer** |
DELETE FROM Words WHERE IID NOT IN | DELETE FROM Words WHERE IID NOT IN | ||
( SELECT Words_ID FROM Feedbacks_has_Words ) | ( SELECT Words_ID FROM Feedbacks_has_Words ) | ||
- | ==== Insertions ==== | + | **Question** |
+ | Avec une base de données sqlite avec 2 tables. Une table contient les stations métérologiques et une table contient les mesures de températures journalières pour ces stations. Comment trouver en SQL les dates et les stations pour lesquelles il manque des mesures ? | ||
+ | |||
+ | **Réponse** | ||
+ | |||
+ | <code sql> | ||
+ | SELECT s.id, s.name AS nom_station, | ||
+ | FROM stations s | ||
+ | CROSS JOIN ( | ||
+ | SELECT DISTINCT measured_at FROM measures | ||
+ | ) AS dates | ||
+ | LEFT JOIN measures m ON s.id = m.station_id AND dates.measured_at = m.measured_at | ||
+ | WHERE m.station_id IS NULL | ||
+ | ORDER BY s.id, dates.measured_at; | ||
+ | </ | ||
+ | |||
+ | ==== Insertions ==== | ||
**Question** | **Question** | ||
Ligne 110: | Ligne 142: | ||
REPLACE --> http:// | REPLACE --> http:// | ||
+ | |||
+ | |||
+ | **pour les accès concurrents avec SELECT FOR UPDATE en SQL** | ||
+ | * https:// | ||
+ | * https:// | ||
+ | |||
+ | ==== Supprimer doublons ==== | ||
+ | |||
+ | https:// | ||
+ | |||
+ | Compter les doublons: | ||
+ | <code sql> | ||
+ | SELECT count(*) as DOUBLON, employee_id | ||
+ | FROM globalstatements | ||
+ | group by employee_id | ||
+ | having count(*) > 1 | ||
+ | limit 100000 | ||
+ | </ | ||
+ | |||
+ | Les supprimer: | ||
+ | <code sql> | ||
+ | delete G1 from globalstatements G1 | ||
+ | LEFT OUTER JOIN ( | ||
+ | SELECT MIN(id) as id, employee_id | ||
+ | FROM globalstatements | ||
+ | GROUP BY employee_id | ||
+ | ) as G2 | ||
+ | ON G1.id = G2.id | ||
+ | WHERE G2.id IS NULL | ||
+ | ; | ||
+ | </ | ||
+ | |||
+ | ==== Supprimer dans plusieurs tables ==== | ||
+ | |||
+ | Supprimer les lignes dans les tables wp2r_posts et wp2r_postmeta : | ||
+ | |||
+ | <code sql> | ||
+ | DELETE m , p | ||
+ | FROM wp2r_posts p INNER JOIN wp2r_postmeta m | ||
+ | WHERE m.post_id= p.ID | ||
+ | and p.post_type=" | ||
+ | </ | ||
+ | |||
===== Tools ===== | ===== Tools ===== | ||
Ligne 115: | Ligne 190: | ||
==== MySQL Workbench ==== | ==== MySQL Workbench ==== | ||
+ | [[/ | ||
==== HeidiSQL ==== | ==== HeidiSQL ==== | ||
+ | https:// | ||
+ | |||
+ | HeidiSQL runs fine on Windows 8 and 10 (and on Windows 7 + 11 with some minor issues). | ||
==== Tora ==== | ==== Tora ==== | ||
Ligne 124: | Ligne 203: | ||
In addition to regular query and data browsing functionality, | In addition to regular query and data browsing functionality, | ||
+ | |||
+ | ==== DB Browser for SQLite ==== | ||
+ | |||
+ | https:// | ||
+ | |||
informatique/sql.1445771724.txt.gz · Dernière modification : 25/10/2015 12:15 de cyrille