Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

MySQL VAR_POP() function

VAR_POP() function

MySQL VAR_POP() function returns the population standard variance of an expression.

Syntax

VAR_POP(expr);

Where expr is an expression.

MySQL Version: 5.6

Example: VAR_POP() function

The following statement returns the population standard variance of 'total_cost' from purchase table.

Sample table: purchase


Code:

SELECT VAR_POP(total_cost) 
FROM purchase;

Sample Output:

mysql> SELECT VAR_POP(total_cost) 
    -> FROM purchase;
+---------------------+
| VAR_POP(total_cost) |
+---------------------+
|        99472.222222 | 
+---------------------+
1 row in set (0.00 sec)

PHP script

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>example-aggregate-functions-and-grouping-var_pop()- php mysql examples | w3resource</title>
<meta name="description" content="example-aggregate-functions-and-grouping-var_pop()- php mysql examples | w3resource">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2>Population variance of total purchase:</h2>
<table class='table table-bordered'>
<tr>
<th>Population variance of total purchase</th>
</tr>
<?php
$hostname="your_hostname";
$username="your_username";
$password="your_password";
$db = "your_dbname";
$dbh = new PDO("mysql:host=$hostname;dbname=$db", $username, $password);
foreach($dbh->query('SELECT VAR_POP(total_cost) 
FROM purchase') as $row) {
echo "<tr>"; 
echo "<td>" . $row['VAR_POP(total_cost)'] . "</td>";
echo "</tr>";
}
?>
</tbody></table>
</div>
</div>
</div>
</body>
</html>

View the example in browser

JSP script

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ page import="java.sql.*" %>
<%@ page import="java.io.*" %>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>example-aggregate-functions-and-grouping-var_pop()</title>
</head>
<body>
<%
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
String Host = "jdbc:mysql://localhost:3306/w3resour_bookinfo";
Connection connection = null;
Statement statement = null;
ResultSet rs = null;
connection = DriverManager.getConnection(Host, "root", "datasoft123");
statement = connection.createStatement();
String Data = "SELECT VAR_POP(total_cost) FROM purchase";
rs = statement.executeQuery(Data);
%>
<TABLE border="1">
<tr width="10" bgcolor="#9979">
<td>Sum of total costs of purchases</td>
</tr>
<%
while (rs.next()) {
%>
<TR>
<TD><%=rs.getString("VAR_POP(total_cost)")%></TD>
</TR>
<%   }    %>
</table>
<%
rs.close();
statement.close();
connection.close();
} catch (Exception ex) {
out.println("Can’t connect to database.");
}
%>
</body>
</html>

Online Practice Editor:


Previous: SUM() with group by
Next: VAR_SAMP()