<pre><code>...<\pre><\code>
block for code and SQL answers.
When writing SQL code, capitalize SQL keywords.
SELECT DISTINCT student.ID
FROM (student JOIN takes USING (ID))
JOIN (instructor JOIN teaches USING(ID))
USING (course_id, sec_id, semester, year)
WHERE instructor.name = "Einstein"
<pre><code>...<\pre><\code>
block when writing JSON for MongoDB answers.
{
name: "Jane Doe",
title: "CIO",
address {
street: "Baltic Ave.",
city: "Atlantic City",
State: "NJ"
}
}