-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroduction.tex
More file actions
45 lines (40 loc) · 1.09 KB
/
introduction.tex
File metadata and controls
45 lines (40 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
%-------------------------------------------------------
% LaTeX 101
% bold - \textbf{bold text}
% italic - \textit{italic text}
%
% bullet points:
% \begin{itemize}
% \item first point
% \item second point
% \end{itemize}
%
% Code listings
% \begin{lstlisting}[language=sql]
% SELECT * FROM metadata
% \end{lstlisting}
% you can also change the language to Python or R
%
%-------------------------------------------------------
\section{Introduction}
\subsection{The SQL language}
The four most basic commands in SQL are:
\begin{itemize}
\item
\item
\item
\item
\end{itemize}
One specialty about the SQL language is, that you can work on the data as well as on structural components of the database with the same language.
To prevent confusion, data commands and structural directives are strictly separated.
% REPLACE THE \blank with the correct term: i.e. data commands / structural directives
The commands given above are \blank. \medskip\par
%
% Put the opposite here
The four corresponding \blank are:
\begin{itemize}
\item
\item
\item
\item
\end{itemize}