Transcript text: College
\begin{tabular}{|c|c|c|c|}
\hline CollegeName & City & StateCode & Enrollment \\
\hline Bowdoin & Brunswick & ME & 1828 \\
\hline Emory & Atlanta & GA & 14769 \\
\hline Tufts & Medford & MA & 10872 \\
\hline Rice & Houston & TX & 6740 \\
\hline
\end{tabular}
State
\begin{tabular}{|l|l|l|}
\hline StateCode & \multicolumn{1}{|c|}{ StateName } & CapitalCity \\
\hline ME & Maine & Augusta \\
\hline TX & Texas & Austin \\
\hline MA & Massachusetts & Boston \\
\hline GA & Georgia & Atlanta \\
\hline
\end{tabular}
Complete the following relational algebra expression to generate the Result table:
\[
\Pi_{(\text {CollegeName, StateName })} \sigma_{\left(\mathbf{A}_{-}\right)}\left(\text {College } \Phi_{\left(\mathbf{B}_{-}\right)} \text {State }\right)
\]
Result
\begin{tabular}{|c|c|}
\hline CollegeName & StateName \\
\hline Bowdoin & Maine \\
\hline
\end{tabular}