I'm reading Shawn Hedman's A First Course in Logic: An Introduction to Model Theory, Proof Theory, Computability, and Complexity:
Definition 1.18 Formula $G$ is a consequence of formula $F$ if for every assignment $A$, if $A\models F$ then $A\models G$. We denote this by $F\models G$.
Proposition 1.19 For any formulas $F$ and $G$, $G$ is a consequence of $F$ if and only if $F \rightarrow G$ is a tautology.
Example 1.20 Let $F$ and $G$ be formulas. Each of the following can easily be verified by computing a truth table.
$$(F \wedge G)\models F \tag{1}$$
$$F\models (F \vee G) \tag{2}$$
$$(F\wedge ¬ F )\models G \tag{3}$$
I'm failing to understand why the truth table of $\models$ is so, (I'm not really sure that it exists, but according to the text, I guess it exists). For example, calculating from $(1)$, I'll obtain the following truth table:
$$\begin{array}[b]{cccc} F & G & (F\wedge G) & (F\wedge G)\models F\\ 0 & 0 & 0 & 1\\ 0 & 1 & 0 & 1\\ 1 & 0 & 0 & 1\\ 1 & 1 & 1 & 1 \end{array}$$
I've also obtained tautologies by calculating the truth tables for the other examples and considering that both $(1)$, $(2)$ and $(3)$ are convenient examples chosen by the author to demonstrate examples of tautologies, I believe that the truth table of $\models$ is:
$$\begin{array}[b]{ccc} F' & G' & F'\models G'\\ 0 & 1 & 1\\ 1 & 1 & 1 \end{array} $$
What's not obvious to me at all is why is that so? why this is the truth table of $\models$?