नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Applies to:
Databricks SQL
Databricks Runtime
Throws an exception with expr as the message.
Syntax
raise_error(expr)
Arguments
expr: ASTRINGexpression.
Returns
The NULL type.
The function raises a runtime error with expr as the error message.
Applies to:
Databricks SQL
Databricks Runtime 14.2 and above
The returned error condition is USER_RAISED_EXCEPTION and the SQLSTATE is P0001.
See Handling error conditions for details on handling error conditions.
Examples
> SELECT raise_error('custom error message');
[USER_RAISED_EXCEPTION] custom error message SQLSTATE: P0001