The definition of cache coherence says that:
In sequential consistency
If we conform to the sequential consistency, every condition of cache coherence seems to be fulfilled. So I guess the sequential consistency implies cache coherence (and sequential consistency is stronger than cache coherence).
Yes. Coherence can be seen as sequential consistency per location.
So for sequential consistency: if the results of the execution can be explained by a different execution with the following properties:
there should be a total order of the loads/stores over all locations.
this order is consistent with the program order of each of the cores.
a read should see the most recent write before it in this order.
then the execution is sequentially consistent.
For coherence, you only need a total order per location, but otherwise, the same rules apply as with sequential consistency.
So any execution that is sequentially consistent, is coherent. But the converse doesn't need to be true.