I mean, if you have multiples equations and all modulus are co-primes you can 'merge' them in just one equation.
But can you do it reversed? Something like:
(a mod p*q) p and q co-prime
And then create the equations (a mod p) and (a mod q). I've seen that:
18≡18(mod 35) but
18≡4(mod 7) and 18≡3(mod 5)
But I've seen other questions where it was told that you are able to do it.
This direction of the statement is trivially true.
If $x \equiv a \pmod {pq}$, then $pq \mid (x-a)$.
So $p \mid (x-a) $ and $q \mid (x-a)$.
So, $x \equiv a \pmod p$ and $x \equiv a \pmod q$.