This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1A | |
2A | |
3A | |
4B | |
5B | |
6C | |
7B | |
8A | |
9B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1A | |
2A | |
3A | |
4B | |
5B | |
6C | |
7B | |
8A | |
9B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1A | |
2A | |
3A | |
4B | |
5B | |
6C | |
7B | |
8A | |
9B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1A | |
2A | |
3A | |
4B | |
5B | |
6C | |
7B | |
8A | |
9B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1A | |
2A | |
3A | |
4B | |
5B | |
6C | |
7B | |
8A | |
9B |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://google-gruyere.appspot.com/GRUYEREINSTANCEID/snippets.gtl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://google-gruyere.appspot.com/GRUYEREINSTANCEID/snippets.gtl |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express') | |
const models = require('./models') | |
const app = express() | |
const bodyParser = require('body-parser') | |
app.use(bodyParser.urlencoded({extended: false})) | |
app.use(bodyParser.json()) | |
app.get('/heros',(req,res) => { | |
models |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const express = require('express'); | |
const app = express(); | |
const port = 3000; | |
const connection = require('./conf'); | |
// Support JSON-encoded bodies | |
app.use(express.json()); | |
// Support URL-encoded bodies | |
app.use(express.urlencoded({ | |
extended: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql> SELECT te.name,COUNT(*) AS nb_joueurs FROM player AS pl JOIN team AS te ON te.id=pl.team_id GROUP BY te.name ORDER BY te.name DESC; | |
+------------+------------+ | |
| name | nb_joueurs | | |
+------------+------------+ | |
| Slytherin | 21 | | |
| Ravenclaw | 15 | | |
| Hufflepuff | 12 | | |
| Gryffindor | 36 | | |
+------------+------------+ | |
4 rows in set (0.00 sec) |
NewerOlder