Files
uni/third/semester1/CT3532: Database Systems II/assignments/assignment3/latex/_minted-CT3532-Assignment-3/B9B81006C82957989C602989023B95A7D9D8413971034701D3D6384DB23C94C8.pygtex
2023-12-07 01:44:01 +00:00

9 lines
552 B
Plaintext

\begin{Verbatim}[commandchars=\\\{\}]
\PYG{k}{CREATE}\PYG{+w}{ }\PYG{k}{TABLE}\PYG{+w}{ }\PYG{n}{players}\PYG{+w}{ }\PYG{p}{(}
\PYG{+w}{ }\PYG{n}{player\PYGZus{}id}\PYG{+w}{ }\PYG{n+nb}{INT}\PYG{+w}{ }\PYG{k}{NOT}\PYG{+w}{ }\PYG{k}{NULL}\PYG{+w}{ }\PYG{n}{AUTO\PYGZus{}INCREMENT}\PYG{p}{,}
\PYG{+w}{ }\PYG{c+c1}{\PYGZhy{}\PYGZhy{} whatever other relevant information for each player should be included here}
\PYG{+w}{ }\PYG{k}{PRIMARY}\PYG{+w}{ }\PYG{k}{KEY}\PYG{+w}{ }\PYG{p}{(}\PYG{n}{player\PYGZus{}id}\PYG{p}{)}
\PYG{p}{)}
\end{Verbatim}