Advertisement
aruk_codeapp

Subscription Package ที่กำลังขายอยู่

Mar 16th, 2020
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SELECT
  2.     id,
  3.     name,
  4.     (price / 100) AS price,
  5.     billing_cycle
  6. FROM
  7.     subscription_packages
  8. WHERE
  9.     deleted_at IS NULL
  10.     AND collection_id IS NOT NULL
  11. ORDER BY
  12.     id
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement