ฟังก์ชันเปรียบเทียบ

ฟังก์ชันการเปรียบเทียบ

ชื่อ คำอธิบาย
EQUAL การเปรียบเทียบความเท่ากัน
GREATER_THAN การเปรียบเทียบ "มากกว่า"
GREATER_THAN_OR_EQUAL การเปรียบเทียบมากกว่าหรือเท่ากับ
LESS_THAN การเปรียบเทียบน้อยกว่า
LESS_THAN_OR_EQUAL การเปรียบเทียบน้อยกว่าหรือเท่ากับ
NOT_EQUAL การเปรียบเทียบไม่เท่ากับ

เท่ากับ

ไวยากรณ์:

equal(x: ANY, y: ANY) -> BOOLEAN

ตัวอย่าง

x y equal(x, y)
1L 1L TRUE
1.0 1L TRUE
-1.0 1L FALSE
NaN NaN TRUE
NULL NULL TRUE
NULL ABSENT FALSE

คำอธิบาย:

แสดงผล TRUE หาก x และ y เท่ากัน และ FALSE ในกรณีอื่นๆ

Web

const result = await execute(db.pipeline()
  .collection("books")
  .select(field("rating").equal(5).as("hasPerfectRating"))
);
Swift
let result = try await db.pipeline()
  .collection("books")
  .select([Field("rating").equal(5).as("hasPerfectRating")])
  .execute()

Kotlin

val result = db.pipeline()
    .collection("books")
    .select(field("rating").equal(5).alias("hasPerfectRating"))
    .execute()

Java

Task<Pipeline.Snapshot> result = db.pipeline()
    .collection("books")
    .select(field("rating").equal(5).alias("hasPerfectRating"))
    .execute();
Python
from google.cloud.firestore_v1.pipeline_expressions import Field

result = (
    client.pipeline()
    .collection("books")
    .select(Field.of("rating").equal(5).as_("hasPerfectRating"))
    .execute()
)

มากกว่า

ไวยากรณ์:

greater_than(x: ANY, y: ANY) -> BOOLEAN

คำอธิบาย:

แสดงผล TRUE หาก x มากกว่า y และแสดงผล FALSE ในกรณีอื่นๆ

หาก x และ y เปรียบเทียบกันไม่ได้ ฟังก์ชันจะแสดงผล FALSE

ตัวอย่าง

x y greater_than(x, y)
1L 0.0 TRUE
1L 1L FALSE
1L 2L FALSE
"foo" 0L FALSE
0L "foo" FALSE
NaN 0L FALSE
0L NaN FALSE
NULL NULL FALSE

Web

const result = await execute(db.pipeline()
  .collection("books")
  .select(field("rating").greaterThan(4).as("hasHighRating"))
);
Swift
let result = try await db.pipeline()
  .collection("books")
  .select([Field("rating").greaterThan(4).as("hasHighRating")])
  .execute()

Kotlin

val result = db.pipeline()
    .collection("books")
    .select(field("rating").greaterThan(4).alias("hasHighRating"))
    .execute()

Java

Task<Pipeline.Snapshot> result = db.pipeline()
    .collection("books")
    .select(field("rating").greaterThan(4).alias("hasHighRating"))
    .execute();
Python
from google.cloud.firestore_v1.pipeline_expressions import Field

result = (
    client.pipeline()
    .collection("books")
    .select(Field.of("rating").greater_than(4).as_("hasHighRating"))
    .execute()
)

มากกว่าหรือเท่ากับ

ไวยากรณ์:

greater_than_or_equal(x: ANY, y: ANY) -> BOOLEAN

คำอธิบาย:

แสดงผล TRUE หาก x มากกว่าหรือเท่ากับ y และแสดงผล FALSE ในกรณีอื่นๆ

หาก x และ y เปรียบเทียบกันไม่ได้ ฟังก์ชันจะแสดงผล FALSE

ตัวอย่าง

x y greater_than_or_equal(x, y)
1L 0.0 TRUE
1L 1L TRUE
1L 2L FALSE
"foo" 0L FALSE
0L "foo" FALSE
NaN 0L FALSE
0L NaN FALSE
NULL NULL TRUE

Web

const result = await execute(db.pipeline()
  .collection("books")
  .select(field("published").greaterThanOrEqual(1900).as("publishedIn20thCentury"))
);
Swift
let result = try await db.pipeline()
  .collection("books")
  .select([Field("published").greaterThanOrEqual(1900).as("publishedIn20thCentury")])
  .execute()

Kotlin

val result = db.pipeline()
    .collection("books")
    .select(field("published").greaterThanOrEqual(1900).alias("publishedIn20thCentury"))
    .execute()

Java

Task<Pipeline.Snapshot> result = db.pipeline()
    .collection("books")
    .select(field("published").greaterThanOrEqual(1900).alias("publishedIn20thCentury"))
    .execute();
Python
from google.cloud.firestore_v1.pipeline_expressions import Field

result = (
    client.pipeline()
    .collection("books")
    .select(
        Field.of("published")
        .greater_than_or_equal(1900)
        .as_("publishedIn20thCentury")
    )
    .execute()
)

LESS_THAN

ไวยากรณ์:

less_than(x: ANY, y: ANY) -> BOOLEAN

คำอธิบาย:

แสดงผล TRUE หาก x น้อยกว่า y และแสดงผล FALSE หากไม่เป็นเช่นนั้น

หาก x และ y เปรียบเทียบกันไม่ได้ ฟังก์ชันจะแสดงผล FALSE

ตัวอย่าง

x y less_than(x, y)
1L 0.0 FALSE
1L 1L FALSE
1L 2L TRUE
"foo" 0L FALSE
0L "foo" FALSE
NaN 0L FALSE
0L NaN FALSE
NULL NULL FALSE

Web

const result = await execute(db.pipeline()
  .collection("books")
  .select(field("published").lessThan(1923).as("isPublicDomainProbably"))
);
Swift
let result = try await db.pipeline()
  .collection("books")
  .select([Field("published").lessThan(1923).as("isPublicDomainProbably")])
  .execute()

Kotlin

val result = db.pipeline()
    .collection("books")
    .select(field("published").lessThan(1923).alias("isPublicDomainProbably"))
    .execute()

Java

Task<Pipeline.Snapshot> result = db.pipeline()
    .collection("books")
    .select(field("published").lessThan(1923).alias("isPublicDomainProbably"))
    .execute();
Python
from google.cloud.firestore_v1.pipeline_expressions import Field

result = (
    client.pipeline()
    .collection("books")
    .select(Field.of("published").less_than(1923).as_("isPublicDomainProbably"))
    .execute()
)

น้อยกว่าหรือเท่ากับ

ไวยากรณ์:

less_than_or_equal(x: ANY, y: ANY) -> BOOLEAN

คำอธิบาย:

แสดงผล TRUE หาก x น้อยกว่าหรือเท่ากับ y และแสดงผล FALSE หากไม่เป็นเช่นนั้น

หาก x และ y เปรียบเทียบกันไม่ได้ ฟังก์ชันจะแสดงผล FALSE

ตัวอย่าง

x y less_than(x, y)
1L 0.0 FALSE
1L 1L TRUE
1L 2L TRUE
"foo" 0L FALSE
0L "foo" FALSE
NaN 0L FALSE
0L NaN FALSE
NULL NULL TRUE

Web

const result = await execute(db.pipeline()
  .collection("books")
  .select(field("rating").lessThanOrEqual(2).as("hasBadRating"))
);
Swift
let result = try await db.pipeline()
  .collection("books")
  .select([Field("rating").lessThanOrEqual(2).as("hasBadRating")])
  .execute()

Kotlin

val result = db.pipeline()
    .collection("books")
    .select(field("rating").lessThanOrEqual(2).alias("hasBadRating"))
    .execute()

Java

Task<Pipeline.Snapshot> result = db.pipeline()
    .collection("books")
    .select(field("rating").lessThanOrEqual(2).alias("hasBadRating"))
    .execute();
Python
from google.cloud.firestore_v1.pipeline_expressions import Field

result = (
    client.pipeline()
    .collection("books")
    .select(Field.of("rating").less_than_or_equal(2).as_("hasBadRating"))
    .execute()
)

NOT_EQUAL

ไวยากรณ์:

not_equal(x: ANY, y: ANY) -> BOOLEAN

คำอธิบาย:

แสดงผล TRUE หาก x ไม่เท่ากับ y และแสดงผล FALSE ในกรณีอื่นๆ

ตัวอย่าง

x y not_equal(x, y)
1L 1L FALSE
1.0 1L FALSE
-1.0 1L TRUE
NaN 0L TRUE
NaN NaN FALSE
NULL NULL FALSE
NULL ABSENT TRUE

Web

const result = await execute(db.pipeline()
  .collection("books")
  .select(field("title").notEqual("1984").as("not1984"))
);
Swift
let result = try await db.pipeline()
  .collection("books")
  .select([Field("title").notEqual("1984").as("not1984")])
  .execute()

Kotlin

val result = db.pipeline()
    .collection("books")
    .select(field("title").notEqual("1984").alias("not1984"))
    .execute()

Java

Task<Pipeline.Snapshot> result = db.pipeline()
    .collection("books")
    .select(field("title").notEqual("1984").alias("not1984"))
    .execute();
Python
from google.cloud.firestore_v1.pipeline_expressions import Field

result = (
    client.pipeline()
    .collection("books")
    .select(Field.of("title").not_equal("1984").as_("not1984"))
    .execute()
)