Add spacing in comments to improve readability

This commit is contained in:
Marc Würth
2020-04-23 21:50:31 +02:00
parent cc8c554a55
commit 33c7a030d8
9 changed files with 35 additions and 35 deletions
@@ -7,10 +7,10 @@ $connectionOptions = [
"Uid" => "sa",
"PWD" => "your_password",
];
//Establishes the connection
// Establishes the connection
$conn = sqlsrv_connect($serverName, $connectionOptions);
//Read Query
// Read Query
$tsql = "SELECT SUM(Price) as sum FROM Table_with_5M_rows";
$getResults = sqlsrv_query($conn, $tsql);
echo("Sum: ");