You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remco Tolsma edited this page Oct 1, 2016
·
3 revisions
SELECTproduct.name,
subscription.nameFROM
orbis_subscriptions AS subscription
LEFT JOIN
orbis_subscription_types AS product
ONsubscription.type_id=product.idWHEREsubscription.cancel_date IS NULLANDsubscription.name NOT IN (
SELECT
post_title
FROM
wp_posts
WHERE
post_type ='orbis_monitor'
)
AND
(
product.nameLIKE'%WordPress onderhoud en support%'ORproduct.nameLIKE'%Hosting%'
)
;