I know that
$$\vdash_{\mathcal G}\exists x(\exists yP(x,y) → \forall z \exists wP(z,w))$$
(I have read and done a syntactic proof of this.)
And therefore also
$$\models \exists x(\exists yP(x,y) → \forall z \exists wP(z,w))$$
By soundness of FOL.
But I can't make sense of how this formula can be valid. It looks wrong to me. The way I read it is: if there exists some $x$ and $y$ such that $P(x,y)$, then forall $z$ and some $w$, $P(z,w)$. But how can that be valid?
The order of quantifiers is significant in FOL, so it might be simpler to consider a logically equivalent formula on a simpler form. This formula can be rewritten to a formula in Prenex Normal Form, for example like this:
$$\exists x \forall y \forall z \exists w: P(x,y) → P(z,w)$$
But this formula does not look like it is valid, either. Here is an attempt at a counter-example in the form of an interpretation of the formula (a structure for it): Let $P = \{0\} \times \mathbb{N}$. Then $P(0,x)$ for all $x \in \mathbb{N}$, but there is no $w \in \mathbb N$ s.t. $P(z,w)$ for all $z \in \mathbb N$. In fact, there is only one $z \in \mathbb N$ s.t. $P(z,w)$ holds for some $w$, namely $z = 0$.