userId | firstName | lastName | |
---|---|---|---|
2 | Jo | Hardy | [email protected] |
4 | Todd | Davis | [email protected] |
9 | Shannon | Guenther | [email protected] |
34 | Sheila | Medina | [email protected] |
🤷♀️
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
SELECT * FROM example_table WHERE example_column='Mel'; |
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
# Get all entries like Melissa, Melli. | |
# Not depending on how many characters are wildcarded. | |
SELECT * FROM example_table WHERE example_column LIKE 'Mel%'; | |
# Get all entries like Meli, Melo. | |
# Depending on how many characters are wildcarded. | |
SELECT * FROM example_table WHERE example_column LIKE 'Mel_'; | |
# Or for multiple characters, here 2 | |
SELECT * FROM example_table WHERE example_column LIKE 'Mel__'; |
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 a = 1; | |
console.log(a); |
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
var memoryStorage = require("./storage/memory"); | |
function Multer(options) { | |
// ... | |
} | |
Multer.prototype.single = function(name) { | |
// ... | |
}; |
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
<mjml> | |
<mj-body> | |
<mj-section> | |
<mj-column> | |
<mj-table> | |
<tr style="text-align:left; background-color: #dae4e9; color: #70818a;"> | |
<th style="padding: 0 0 0 16px; text-align:left;">Year</th> | |
<th style="padding: 10px 0; text-align:left;">Language</th> | |
<th style="padding: 0px 16px 0 0px; text-align:left;">Inspired from</th> | |
</tr> |
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 basePerson = { | |
firstName: "Max" | |
}; | |
const condition = getCondition(); | |
const person = { | |
...basePerson, | |
...(condition && { lastName: "" }) | |
}; |
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 basePerson = { | |
firstName: "Max" | |
}; | |
const condition = getCondition() | |
const result = condition && { lastName: "" }; | |
// Can be either false or { lastName: "" } | |
const person = { | |
...basePerson, |
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 basePerson = { | |
firstName: "Max" | |
}; | |
const person = { | |
...basePerson, | |
...{ lastName: "" } | |
}; |
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 basePerson = { | |
firstName: "Max" | |
}; | |
const person = { | |
...basePerson, | |
lastName: "" | |
}; |