View a markdown version of this page

$tsSecond - Amazon DocumentDB

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

$tsSecond

バージョン 8.0.1 から新規。

Amazon DocumentDB の$tsSecond演算子は、タイムスタンプ値の秒部分を長い整数 (Unix エポック秒) として返します。

パラメータ

  • expression: タイムスタンプに解決される式。

例 (MongoDB シェル)

次の例は、 $tsSecond演算子を使用してタイムスタンプ値から秒部分を抽出する方法を示しています。

サンプルドキュメントを作成する

db.events.insertMany([ {_id: 1, ts: Timestamp(1678900000, 1)}, {_id: 2, ts: Timestamp(1678900000, 2)}, {_id: 3, ts: Timestamp(1678900001, 1)} ]);

クエリの例

db.events.aggregate([ { $project: { seconds: { $tsSecond: "$ts" } } } ]);

出力

[ {_id: 1, seconds: Long("1678900000")}, {_id: 2, seconds: Long("1678900000")}, {_id: 3, seconds: Long("1678900001")} ]

コードの例

$tsSecond 演算子を使用するコード例を表示するには、使用する言語のタブを選択します。

Node.js
const { MongoClient, Timestamp } = require('mongodb'); async function example() { const client = new MongoClient('mongodb://<username>:<password>@<cluster-endpoint>:27017/?tls=true&tlsCAFile=global-bundle.pem&replicaSet=rs0&readPreference=secondaryPreferred&retryWrites=false'); try { await client.connect(); const db = client.db('test'); const collection = db.collection('events'); const result = await collection.aggregate([ { $project: { seconds: { $tsSecond: "$ts" } } } ]).toArray(); console.log(result); } finally { await client.close(); } } example();
Python
from pymongo import MongoClient def example(): client = MongoClient('mongodb://<username>:<password>@<cluster-endpoint>:27017/?tls=true&tlsCAFile=global-bundle.pem&replicaSet=rs0&readPreference=secondaryPreferred&retryWrites=false') try: db = client['test'] collection = db['events'] result = list(collection.aggregate([ {'$project': {'seconds': {'$tsSecond': '$ts'}}} ])) print(result) finally: client.close() example()