미분류

Shopper or Merchant? Check-out N1QL Querying

3 분 읽기

N1QL is a next generation query language for Couchbase Server. It goes beyond SQL and the relational model in several ways–most importantly, attributes in N1QL can contain multiple values, and these values can be nested. In this blog, we will go over some N1QL queries that are commonly seen in an e-commerce application. This kind of app would have a variety of rich data related to products, customers, 그리고 purchases.

First, lets get a list of products belonging to a particular category  (in this case, I am looking for “appliances”)

  SELECT product

  FROM product

  UNNEST product.categories as categories

  WHERE categories = “Appliances”

I’ve now found an appliance that I’m looking to buy, but before I check-out, I need to log into the store. Your app can store user-profiles in Couchbase in the form of JSON documents as shown below :

“resultset”: [
   {
     “ccInfo”: {
       “cardExpiry”: “2013-09-12”,
       “cardNumber”: “1228-1221-1221-1431”,
       “cardType”: “discover”
     },
     “customerId”: “customer0”,
     “dateAdded”: “2013-06-23T04:32:31Z”,
     “dateLastActive”: “2013-07-23T04:32:31Z”,
     “emailAddress”: “zion@armstronghaley.biz”,
     “firstName”: “Rosella”,
     “lastName”: “Tremblay”,
     “phoneNumber”: “1-543-962-9861 x534”,
     “postalCode”: “75832”,
     “state”: “PR”,
     “type”: “customer”
   }
 ]
….

Now, lets get a list of customers and their e-mail addresses. To do that, you can use the following N1QL query :

SELECT firstName || ” “ || lastName as fullName, emailAddress

FROM 고객

|| is used to concatenate strings in N1QL.  The result of this query will be something like the follows –

“resultset”: [
   {
     “emailAddress”: “zion@armstronghaley.biz”,
     “fullName”: “Rosella Tremblay”
   },
   {
     “emailAddress”: “kobe@douglas.net”,
     “fullName”: “Erich Toy”
   },
….

 

After I login, I add the item to my shopping cart. Before I check-out, I add a few more items that I like into my shopping cart. I then submit my order. Soon later, the dispatch team is notified that an order is placed and would like to review my purchase order to prepare the package to be mailed out.

The following N1QL query, will prepare the shopping purchase order for “purchase0”
 

SELECT purchases, product, 고객

FROM purchases KEY “purchase0” UNNEST purchases.lineItems AS items

JOIN product KEY items.product

JOIN 고객 KEY purchases.customerId

Here the document that has purchase information is joined with the product and customer documents to get complete purchase order information.

 

At the end of the year, the store wants to review its annual sales. The following N1QL query calculates the sales month-over-month.

SELECT substr(purchases.purchasedAt, 0, 7) as monthround(sum(product.unitPrice * items.count)/1000000, 3) as revenueMillion

FROM purchases unnest purchases.lineItems as items 가입하기 product 열쇠 items.product

GROUP BY substr(purchases.purchasedAt, 0, 7)

ORDER BY month

 

Want more?

We only skimmed over a few N1QL queries related to e-commerce. To learn more about N1QL, check out  https://query.couchbase.com and don’t forget to register for our upcoming N1QL webinar to go over this use-case in more detail.

이 기사 공유하기

작가

Don Pinto is a Principal Product Manager at Couchbase and is currently focused on advancing the capabilities of Couchbase Server. He is extremely passionate about data technology, and in the past has authored several articles on Couchbase Server including technical blogs and white papers. Prior to joining Couchbase, Don spent several years at IBM where he maintained the role of software developer in the DB2 information management group and most recently as a program manager on the SQL Server team at Microsoft. Don holds a master’s degree in computer science and a bachelor’s in computer engineering from the University of Toronto, Canada.

댓글 남기기

카우치베이스 카펠라를 시작할 준비가 되셨나요?

개발 시작하기

NoSQL을 탐색하고, 리소스를 찾아보고, 튜토리얼을 시작하려면 개발자 포털을 확인하세요.

카펠라 프리 사용하기

단 몇 번의 클릭으로 카우치베이스(Couchbase)를 직접 체험해 보세요. Capella DBaaS는 시작하기 가장 쉽고 빠른 방법입니다.

연락해

Couchbase 제품군에 대해 더 알고 싶으신가요? 저희가 도와드리겠습니다.