Tool for formating data (Json, Xml, CSS, SQL, ...)
{"name":"John", "age":31, "city":"New York"}
{
"name": "John",
"age": 31,
"city": "New York"
}
<?xml version="1.0" encoding="UTF-8"?><note><to>Tove</to><from>Jani</from><heading>Reminder</heading><body>Don't forget me this weekend!</body></note>
<?xml version="1.0" encoding="UTF-8"?>
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
h1 {background-color: green;}div {background-color: lightblue;}p {background-color: yellow;}
h1 {
background-color: green;
}
div {
background-color: lightblue;
}
p {
background-color: yellow;
}
SELECT Count(*) AS DistinctCountries FROM(SELECT DISTINCT Country FROM Customers);
SELECT Count(*) AS DistinctCountries
FROM
(SELECT DISTINCT Country
FROM Customers);
Would you like to buy me a coffee or send me a tip? While it's not expected, I would really appreciate it.