[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-07-31。"],[],[],null,["COALESCE\n========\n\nUse `COALESCE` to replace null values with a more meaningful default value.\n\nSample usage\n------------\n\n```\nCOALESCE(Field1, Field2, Field3)\n```\n\nSyntax\n------\n\n```\nCOALESCE( field_expression [, field_expression,...])\n```\n\n### Parameters\n\n- \u003cvar translate=\"no\"\u003efield_expression\u003c/var\u003e - a field or expression. All \u003cvar translate=\"no\"\u003efield_expressions\u003c/var\u003e must be of the same type.\n\nExample\n-------\n\nSuppose you are tracking multiple racers across multiple heats in a competition. Racers might sit out heats for various reasons. You want to create a **First_Time** field that contains each racer's first results.\n\nHere's the race data.\n\nUse the following formula in the **First_Time** field to get the first non-null value from the **Heat** columns: \n\n```\nCOALESCE(Heat1, Heat2, Heat3)\n```\n\nResults:"]]