-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.php
39 lines (30 loc) · 1.52 KB
/
install.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* Created by JetBrains PhpStorm.
* User: albert1t0
* Date: 21/08/12
* Time: 12:28 PM
* To change this template use File | Settings | File Templates.
*/
/* Crate the VIEWS in the database ...
** This views are for per version statistics **
CREATE VIEW register AS SELECT portal_ip AS portal_ip, portal_url AS portal_url, MAX(registered_on) AS max_register FROM community GROUP BY portal_ip, portal_url;
CREATE VIEW resume AS
SELECT community.portal_ip, community.portal_url, community.portal_version, community.number_of_courses, community.number_of_users
FROM register, association.community AS community
WHERE register.portal_ip = community.portal_ip
AND register.portal_url = community.portal_url
AND register.max_register = community.registered_on;
** This views are for historical growth **
*/
include_once('connection.php');
$mydb = new mysqli(SERVER, DBUSER, DBPASSWORD, DEFDB);
$sql1 = "CREATE VIEW register AS SELECT portal_ip AS portal_ip, portal_url AS portal_url, MAX(registered_on) AS max_register FROM community GROUP BY portal_ip, portal_url";
$sql2 = "CREATE VIEW resume AS
SELECT community.portal_ip, community.portal_url, community.portal_version, community.number_of_courses, community.number_of_users
FROM register, " . DEFDB . ".community AS community
WHERE register.portal_ip = community.portal_ip
AND register.portal_url = community.portal_url
AND register.max_register = community.registered_on;";
$result1 = $mydb->query($sql1);
$result2 = $mydb->query($sql2);