mirror of
https://github.com/BreizhHardware/cours-ISEN-MD.git
synced 2026-03-18 21:50:46 +01:00
Obisidian vault auto-backup: 26-09-2025 11:11:31 on . 5 files edited
This commit is contained in:
30
.obsidian/workspace.json
vendored
30
.obsidian/workspace.json
vendored
@@ -11,24 +11,12 @@
|
||||
"id": "14045e30aacf0836",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"type": "pdf",
|
||||
"state": {
|
||||
"file": "ISEN/Réseau/CIPA4/TP/TP M02 Conversion.md",
|
||||
"mode": "source",
|
||||
"source": false,
|
||||
"backlinks": true,
|
||||
"backlinkOpts": {
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
}
|
||||
"file": "ISEN/BDD/CIPA4/TP1/Tp1.pdf"
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "TP M02 Conversion"
|
||||
"icon": "lucide-file-text",
|
||||
"title": "Tp1"
|
||||
}
|
||||
},
|
||||
{
|
||||
@@ -252,10 +240,13 @@
|
||||
"obsidian-git:Open Git source control": false
|
||||
}
|
||||
},
|
||||
"active": "14045e30aacf0836",
|
||||
"active": "622da1d4e0ba0f73",
|
||||
"lastOpenFiles": [
|
||||
"ISEN/Réseau/CIPA4/Réseau Cours 1.md",
|
||||
"ISEN/BDD/CIPA4/TP1/tp1.sql",
|
||||
"ISEN/BDD/CIR2/TP1/Tp1.pdf",
|
||||
"ISEN/BDD/CIPA4/TP1/Tp1.pdf",
|
||||
"ISEN/Réseau/CIPA4/TP/TP M02 Conversion.md",
|
||||
"ISEN/Réseau/CIPA4/Réseau Cours 1.md",
|
||||
"ISEN/Réseau/A1/Cisco Cours 2.md",
|
||||
"ISEN/Réseau/CIPA4/TP/M01-01-TP-Packet-Tracer_Modele_OSI.pka~",
|
||||
"ISEN/Réseau/CIPA4/TP/M01-01-TP-Packet-Tracer_Modele_OSI.pka",
|
||||
@@ -287,10 +278,7 @@
|
||||
"ISEN/English/CIPA4/15 sept 2025.md",
|
||||
"ISEN/FPGA/CIPA4/FPGA Cours 1.md",
|
||||
"ISEN/FPGA/CIPA4",
|
||||
"ISEN/FPGA",
|
||||
"ISEN/FHS/A2/Outils RH/~WRL2137.tmp",
|
||||
"ISEN/FHS/CIPA4/Anthropologie de l'entreprise/Question texte T2 (conflicted copy 2025-09-12 095312).md",
|
||||
"ISEN/JAVA/CIPA4/Java Cours 1.md",
|
||||
"ISEN/BDD/CIR2/TD2.canvas",
|
||||
"Pasted image 20250905143950.png",
|
||||
"Pasted image 20240505210657.png",
|
||||
|
||||
1
ISEN/BDD/CIPA4/.idea/data_source_mapping.xml
generated
1
ISEN/BDD/CIPA4/.idea/data_source_mapping.xml
generated
@@ -4,5 +4,6 @@
|
||||
<file url="file://$APPLICATION_CONFIG_DIR$/consoles/db/eb9e9749-0ca8-4553-b81f-a6e8f6e0ae06/console.sql" value="eb9e9749-0ca8-4553-b81f-a6e8f6e0ae06" />
|
||||
<file url="file://$PROJECT_DIR$/TP1/CTtpisen.sql" value="eb9e9749-0ca8-4553-b81f-a6e8f6e0ae06" />
|
||||
<file url="file://$PROJECT_DIR$/TP1/ITtpisen.sql" value="eb9e9749-0ca8-4553-b81f-a6e8f6e0ae06" />
|
||||
<file url="file://$PROJECT_DIR$/TP1/tp1.sql" value="eb9e9749-0ca8-4553-b81f-a6e8f6e0ae06" />
|
||||
</component>
|
||||
</project>
|
||||
1
ISEN/BDD/CIPA4/.idea/sqldialects.xml
generated
1
ISEN/BDD/CIPA4/.idea/sqldialects.xml
generated
@@ -3,5 +3,6 @@
|
||||
<component name="SqlDialectMappings">
|
||||
<file url="file://$PROJECT_DIR$/TP1/CTtpisen.sql" dialect="PostgreSQL" />
|
||||
<file url="file://$PROJECT_DIR$/TP1/ITtpisen.sql" dialect="PostgreSQL" />
|
||||
<file url="file://$PROJECT_DIR$/TP1/tp1.sql" dialect="PostgreSQL" />
|
||||
</component>
|
||||
</project>
|
||||
BIN
ISEN/BDD/CIPA4/TP1/Tp1.pdf
Normal file
BIN
ISEN/BDD/CIPA4/TP1/Tp1.pdf
Normal file
Binary file not shown.
10
ISEN/BDD/CIPA4/TP1/tp1.sql
Normal file
10
ISEN/BDD/CIPA4/TP1/tp1.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
SELECT nom, salaire FROM employe WHERE salaire >= 1000 AND salaire <=1500 ORDER BY salaire, nom;
|
||||
SELECT nom, salaire, comm FROM employe WHERE comm IS NOT NULL AND comm > 0;
|
||||
SELECT nom, date_embauche FROM employe WHERE date_embauche >= '2001-01-01' AND date_embauche <= '2001-12-31' ORDER BY date_embauche;
|
||||
SELECT * FROM employe WHERE fonction != 'secretaire';
|
||||
SELECT nom, fonction, num_service FROM employe WHERE fonction = 'directeur' AND (num_service = 20 OR num_service = 30);
|
||||
SELECT nom FROM employe WHERE nom LIKE 'LE%' OR nom LIKE 'le%' OR nom LIKE 'Le%' OR nom LIKE 'lE%' ORDER BY LENGTH(nom), nom;
|
||||
SELECT nom, AGE(CURRENT_DATE, date_embauche) AS "Durée d'embauche" FROM employe ORDER BY AGE(CURRENT_DATE, date_embauche);
|
||||
SELECT nom, fonction, salaire, comm, salaire + COALESCE(comm, 0) AS "Revenu mensuel" FROM employe ORDER BY "Revenu mensuel";
|
||||
SELECT COUNT(*) FROM employe WHERE comm > salaire / 4;
|
||||
SELECT MIN(salaire) AS "salaire min", ROUND(AVG(salaire),2) AS "salaire moy", MAX(salaire) AS "salaire max", ROUND(MAX(salaire)/MIN(salaire)) AS "rapport max/min" FROM employe;
|
||||
Reference in New Issue
Block a user