SQL FunctionsNumeric FunctionsSQRTOn this pageSQRTReturns the square root of a nonnegative number x. Returns Nan for negative input. Syntax SQRT( <x> ) Examples SELECT SQRT(4);┌─────────┐│ sqrt(4) │├─────────┤│ 2 │└─────────┘