Link to home
Start Free TrialLog in
Avatar of Jay Perkins
Jay Perkins

asked on

Limit to Last 5 result in MYSQL for football league tables

I am using the following code to create league tables which works great.
select 
    team, 
    count(*) played, 
    count(case when Home > Away then 1 end) wins, 
    count(case when Away> Home then 1 end) lost, 
    count(case when Home = Away then 1 end) draws, 
    sum(Home) Home, 
    sum(Away) Away, 
    sum(Home) - sum(Away) goal_diff,
    sum(
          case when Home > Away then 3 else 0 end 
        + case when Home = Away then 1 else 0 end
    ) score 
from (
    select hometeam team, Home, Away from footballtest  INNER JOIN Leagues ON CASE WHEN LEFT(footballtest.code, 4) LIKE '0%'  THEN right(LEFT(footballtest.code, 4), LENGTH(LEFT(footballtest.code, 4))-1) ELSE LEFT(footballtest.code, 4)END = Leagues.code where Leagues.Code = '102' and   footballtest.season = '19' and thedate < CURDATE() 
  union all 
    select awayteam, Away, Home from footballtest  INNER JOIN Leagues ON CASE WHEN LEFT(footballtest.code, 4) LIKE '0%'  THEN right(LEFT(footballtest.code, 4), LENGTH(LEFT(footballtest.code, 4))-1) ELSE LEFT(footballtest.code, 4)END = Leagues.code where Leagues.Code = '102' and   footballtest.season = '19' and thedate < CURDATE() 
) a
group by team
order by score desc, goal_diff

Open in new window


What I would like to do is only pull each teams last 5 Games and build the table from that to show current form.I am not sure how I could use Limit 5 here?

I am using MYSQL version 5.8 (With a host).

The code that would need changing is the following:

select hometeam team, Home, Away from footballtest  INNER JOIN Leagues ON CASE WHEN LEFT(footballtest.code, 4) LIKE '0%'  THEN right(LEFT(footballtest.code, 4), LENGTH(LEFT(footballtest.code, 4))-1) ELSE LEFT(footballtest.code, 4)END = Leagues.code where Leagues.Code = '102' and   footballtest.season = '19' and thedate < CURDATE()

Open in new window



As this currently pulls all results from footballtest.season = '19' for each team when I need the last 5 games played by each team in the season.

I have tried the following code but I get the error "Syntax error at WITH table_a"

WITH table_a 
     AS (SELECT thedate, 
                hometeam team, 
                home, 
                away 
         FROM   footballtest 
                INNER JOIN leagues 
                        ON CASE 
                             WHEN LEFT(footballtest.code, 4) LIKE '0%' THEN 
                             RIGHT(LEFT( 
                             footballtest.code, 4), 
                           Length(LEFT(footballtest.code, 4)) - 1) 
                             ELSE LEFT(footballtest.code, 4) 
                           END = leagues.code 
         WHERE  leagues.code = '101' 
                AND footballtest.season = '19' 
                AND thedate < Curdate() 
         UNION ALL 
         SELECT awayteam, 
                away, 
                home 
         FROM   footballtest 
                INNER JOIN leagues 
                        ON CASE 
                             WHEN LEFT(footballtest.code, 4) LIKE '0%' THEN 
                             RIGHT(LEFT( 
                             footballtest.code, 4), 
                           Length(LEFT(footballtest.code, 4)) - 1) 
                             ELSE LEFT(footballtest.code, 4) 
                           END = leagues.code 
         WHERE  leagues.code = '101' 
                AND footballtest.season = '19' 
                AND thedate < Curdate()), 
     table_b 
     AS (SELECT * 
         FROM   (SELECT a.*, 
                        Row_number() 
                          OVER ( 
                            partition BY a.team 
                            ORDER BY a.thedate DESC) AS row_num 
                 FROM   table_a a) 
         WHERE  row_num <= 5) 
SELECT team, 
       Count(*)                played, 
       Count(CASE 
               WHEN home > away THEN 1 
             END)              wins, 
       Count(CASE 
               WHEN away > home THEN 1 
             END)              lost, 
       Count(CASE 
               WHEN home = away THEN 1 
             END)              draws, 
       Sum(home)              home, 
       Sum(away)              away, 
       Sum(home) - Sum(away) goal_diff, 
       Sum(CASE WHEN home > away THEN 3 ELSE 0 END + CASE WHEN home = away 
           THEN 1 
           ELSE 
           0 END)              score 
FROM   table_b 
GROUP  BY team 
ORDER  BY score DESC, 
          goal_diff DESC;

Open in new window

Avatar of ste5an
ste5an
Flag of Germany image

The fact that you use LEFT() and RIGHT() in the JOIN predicates means that you need to normalize your data model first. Cause these functions in the predicates are performance killers, cause the prevent the use of indices.

Common table expressions (WITH cte AS ..) where introduced with MySQL 8.0. Thus you need to stick to your sub-queries.

You're asking for the last five games, but I don't see an entity (table) games in your code samples. Seems also to be an model issue. But assuming that "footballtest" is in fact the games table, then you need to limit the result in this table with a sub query. E.g.

SELECT *
FROM   (   SELECT FT.*
           FROM   footballtest FT
           WHERE  FT.season = '19'
                  AND FT.thedate < CURDATE()
            ORDER BY  FT.thedate
            LIMIT 5
) LastFiveGames
       INNER JOIN (   SELECT hometeam AS team ,
                             Home ,
                             Away
                      FROM   footballtest FT
                             INNER JOIN Leagues L ON CASE WHEN LEFT(FT.code, 4) LIKE '0%' THEN
                                                            RIGHT(LEFT(FT.code, 4), LENGTH(LEFT(FT.code, 4)) - 1)
                                                        ELSE LEFT(FT.code, 4)
                                                   END = L.code
                      WHERE  L.Code = '102'
                      UNION ALL
                      SELECT awayteam ,
                             Away ,
                             Home
                      FROM   footballtest FT
                             INNER JOIN Leagues L ON CASE WHEN LEFT(FT.code, 4) LIKE '0%' THEN
                                                            RIGHT(LEFT(FT.code, 4), LENGTH(LEFT(FT.code, 4)) - 1)
                                                        ELSE LEFT(FT.code, 4)
                                                   END = L.code
                      WHERE  L.Code = '102' ) WhatEverThatUnionIsFor ON LastFiveGames.PrimaryKey = WhatEverThatUnionIsFor.PrimaryKey;

Open in new window


btw, "thedate" is not a good name for a column.

p.s. use always table alias names and qualify all columns. It's unclear where hometeam/awayteam, Home and Away are taken from..

p.p.s. why are Season and Code text columns?

+++ The JOIN on league seems redundant after a further review. I would expect in a normalized model that this should be sufficient for each UNION sub-query:

SELECT FT.*
FROM   footballtest FT
WHERE  CASE WHEN LEFT(FT.code, 4) LIKE '0%' THEN RIGHT(LEFT(FT.code, 4), LENGTH(LEFT(FT.code, 4)) - 1)
            ELSE LEFT(FT.code, 4)
       END = '102';

Open in new window

Avatar of Jay Perkins
Jay Perkins

ASKER

Hi ste5den,

Thank you for a speedy reply.

I have reviewed the above code but unsure what to add here: footballtest ON footballtest.PrimaryKey = footballtest.PrimaryKey;
Footballtest is my games table. To help I have added my schema below:

footballtest structure
CREATE TABLE `footballtest` (
  `id` int(100) NOT NULL AUTO_INCREMENT,
  `code` varchar(50) DEFAULT NULL,
  `thedate` date DEFAULT NULL,
  `season` int(11) DEFAULT NULL,
  `hometeam` varchar(255) DEFAULT NULL,
  `awayteam` varchar(255) DEFAULT NULL,
  `Home` int(11) DEFAULT NULL,
  `Away` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `codeid` (`codeid`),
  KEY `ids` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=530494 DEFAULT CHARSET=utf8

Open in new window


League Structure
CREATE TABLE `Leagues` (
  `Code` int(255) NOT NULL,
  `League` varchar(50) DEFAULT NULL,
  `Country` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`Code`),
  UNIQUE KEY `Code` (`Code`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1

Open in new window



Code in the footballtest is varchar because some of the codes begin with a 0 - this was from my early years of pulling the data and needs to be improved
If adjusting your model is an option, then you should start with this task:

1) Teams should be a table
2) Season should be a separate table.
3) There should be assignment table where you configure which team is allowed for which league in which season.

1) is definitely necessary to avoid inconsistency in your data. 2) and 3) are an option, especially when you plan to use this model for a lot of seasons.

The minimal data model should look like this:

CREATE TABLE `Leagues` (
  `LeagueCode` int(255) NOT NULL,
  `LeagueName` varchar(50) NOT NULL,
  `Country` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`LeagueCode`),
  UNIQUE KEY `LeagueName_Country` (`LeagueName`, `Country`)
)

CREATE TABLE `Seasons` (
  `SeasonCode` int(255) NOT NULL,
  `SeasonName` varchar(50) NOT NULL,
  PRIMARY KEY (`SeasonCode`),
  UNIQUE KEY `SeasonName` (`SeasonName`)
)

CREATE TABLE `Teams` (
  `TeamCode` int(255) NOT NULL,
  `TeamName` varchar(50) NOT NULL,
  PRIMARY KEY (`TeamCode`),
  UNIQUE KEY `TeamName` (`TeamName`)
)

CREATE TABLE `Assignments` (
  `SeasonCode` int(255) NOT NULL,
  `LeagueCode` int(255) NOT NULL,
  `TeamCode` int(255) NOT NULL,
  PRIMARY KEY (`SeasonCode`, `LeagueCode`, `TeamCode`)
)

-- footballtest
CREATE TABLE `Games` (
  `GameID` int(100) NOT NULL AUTO_INCREMENT,
  `SeasonCode` int(255) NOT NULL,
  `LeagueCode` int(255) NOT NULL,
  `GameDate` date NOT NULL,
  `HomeTeamCode` int(255) NOT NULL,
  `AwayTeamCode` int(255) NOT NULL,
  `ResultHome` int(11) DEFAULT NULL,
  `ResultAway` int(11) DEFAULT NULL,
  PRIMARY KEY (`GameID`),
  UNIQUE KEY `Game` (`SeasonCode`, `LeagueCode`, `GameDate`, `HomeTeamCode`, `AwayTeamCode`)
)

Open in new window

With the appropriate foreign keys. The foreign keys for the Games table are (`SeasonCode`, `LeagueCode`, `AwayTeamCode`) and (`SeasonCode`, `LeagueCode`, `HomeTeamCode`) pointing to the assignment table.
When more then one game could be played per day with the same two teams in the same home-away constellation, then you need an additional game number.


Then you should consider using a different database engine. MyISAM is normally not the first option.
Sadly at the moment adjusting my model is not an option due to how I get my data.

Is there a short term fix to just getting the past 5 games? (I do note I need to change my model and will but need to keep with data coming in)

SELECT *
FROM   (   SELECT *
           FROM   footballtest
           WHERE  season = '19'
                  AND thedate < CURDATE()
            ORDER BY  thedate
            LIMIT 5
) LastFiveGames
       INNER JOIN (   SELECT hometeam AS team ,
                             Home ,
                             Away
                      FROM   footballtest
                             INNER JOIN Leagues ON CASE WHEN LEFT(footballtest.code, 4) LIKE '0%' THEN
                                                            RIGHT(LEFT(footballtest.code, 4), LENGTH(LEFT(footballtest.code, 4)) - 1)
                                                        ELSE LEFT(footballtest.code, 4)
                                                   END = Leagues.code
                      WHERE  Leagues.Code = '102'
                             AND footballtest.season = '19'
                             AND thedate < CURDATE()
                      UNION ALL
                      SELECT awayteam ,
                             Away ,
                             Home
                      FROM   footballtest
                             INNER JOIN Leagues ON CASE WHEN LEFT(footballtest.code, 4) LIKE '0%' THEN
                                                            RIGHT(LEFT(footballtest.code, 4), LENGTH(LEFT(footballtest.code, 4)) - 1)
                                                        ELSE LEFT(footballtest.code, 4)
                                                   END = Leagues.code
                      WHERE  Leagues.Code = '102'
                             AND footballtest.season = '19'
                             AND thedate < CURDATE()) footballtest ON footballtest.PrimaryKey = footballtest.PrimaryKey;

Open in new window

In the optimal model the list of teams is simply selected from the assignment table:

SELECT TeamCode
FROM Assignments
WHERE SeasonCode = 2019
	AND LeagueCode = 102

Open in new window

In your current model, this is pretty complex already:

SELECT hometeam AS team
FROM footballtest
WHERE season = 19
	AND code = 102
UNION
SELECT awayteam AS team
FROM footballtest
WHERE season = 19
	AND code = 102

Open in new window

To get the five last games per team, you need a correlated query over the date:

SELECT *
FROM   (   SELECT A.*
           FROM   Assignments A
           WHERE  A.SeasonCode = 2019
                  AND A.LeagueCode = 102 ) T
       INNER JOIN Games G ON G.SeasonCode = T.SeasonCode
                             AND G.LeagueCode = T.LeagueCode
                             AND G.TeamCode = T.TeamCode
WHERE  G.GameDate IN (   SELECT GameDate
                         FROM   Games I
                         WHERE  G.SeasonCode = I.SeasonCode
                                AND G.LeagueCode = I.LeagueCode
                                AND G.TeamCode = I.TeamCode
                         ORDER BY I.GameDate DESC
                         LIMIT 0, 5
    );

Open in new window

Sadly at the moment adjusting my model is not an option due to how I get my data.
The correct approach is to load the data into a staging database. Transform it, Then populate your database with it (ETL).
Is there a short term fix to just getting the past 5 games?
Replace the Teams and Games:

SELECT *
FROM   ( yourTeamsUnion ) T
       INNER JOIN footballtest G ON G.SeasonCode = T.SeasonCode
                             AND G.LeagueCode = T.LeagueCode
                             AND G.TeamCode = T.TeamCode
WHERE  G.GameDate IN (   SELECT GameDate
                         FROM   footballtest I
                         WHERE  G.SeasonCode = I.SeasonCode
                                AND G.LeagueCode = I.LeagueCode
                                AND G.TeamCode = I.TeamCode
                         ORDER BY I.GameDate DESC
                         LIMIT 0, 5
    );

Open in new window

Adjusted to your tables, something like:

SELECT *
FROM   (   SELECT hometeam AS team ,
                  code ,
                  season
           FROM   footballtest
           WHERE  CASE WHEN LEFT(code, 4) LIKE '0%' THEN RIGHT(LEFT(code, 4), LENGTH(LEFT(code, 4)) - 1)
                       ELSE LEFT(code, 4)
                  END = 102
                  AND season = 19
                  AND thedate < CURDATE()
           UNION ALL
           SELECT awayteam ,
                  code ,
                  season
           FROM   footballtest FT
           WHERE  CASE WHEN LEFT(code, 4) LIKE '0%' THEN RIGHT(LEFT(code, 4), LENGTH(LEFT(code, 4)) - 1)
                       ELSE LEFT(code, 4)
                  END = 102
                  AND season = 19
                  AND thedate < CURDATE()) T
       INNER JOIN footballtest G ON G.season = T.season
                                    AND G.code = T.code
                                    AND (   G.AwayTeam = T.Team
                                            OR G.HomeTeam = T.Team )
WHERE  G.thedate IN (   SELECT I.thedate
                        FROM   footballtest I
                        WHERE  I.season = T.season
                               AND I.code = T.code
                               AND (   I.AwayTeam = T.Team
                                       OR I.HomeTeam = T.Team )
                        ORDER BY I.thedate DESC
                        LIMIT 0, 5
    );

Open in new window

I get the error "This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery". I am unable to upgrade the version of MYSQL due to using a host
Hi Jay,

Refer the sequence :
from : order by score desc, goal_diff
to : order by score, goal_diff desc

And go for the first 5  by:
e.g.
SELECT x,y,z
FROM tabel
Join ......
ORDER BY score, goal_diff desc
LIMIT 5

For some SQL it is not "limit", but "Fetch first 5 rows only"
Well, 8.0 is the current version. Don't even find an official release date for 5.8..? Any database service runs on a host..

Well, I'm not sure, whether this limitation is due to your version or the database engine. Thus I would switch to InnoDB and test it first.
Otherwise you need a temporary table.
@ste5an - I have switched to innodb but still have the same error

this is the version i am on:
https://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-6.html
@Theo - Following your guidance I did the following:

	select 
    team, 
    count(*) played, 
    count(case when Home > Away then 1 end) wins, 
    count(case when Away> Home then 1 end) lost, 
    count(case when Home = Away then 1 end) draws, 
    sum(Home) Home, 
    sum(Away) Away, 
    sum(Home) - sum(Away) goal_diff,
    sum(
          case when Home > Away then 3 else 0 end 
        + case when Home = Away then 1 else 0 end
    ) score 
from (
    select hometeam team, Home, Away from footballtest  INNER JOIN Leagues ON CASE WHEN LEFT(footballtest.code, 4) LIKE '0%'  THEN right(LEFT(footballtest.code, 4), LENGTH(LEFT(footballtest.code, 4))-1) ELSE LEFT(footballtest.code, 4)END = Leagues.code where Leagues.Code = '102' and   footballtest.season = '19' and thedate < CURDATE()  ORDER BY score, goal_diff desc LIMIT 5
  union all 
    select awayteam, Away, Home from footballtest  INNER JOIN Leagues ON CASE WHEN LEFT(footballtest.code, 4) LIKE '0%'  THEN right(LEFT(footballtest.code, 4), LENGTH(LEFT(footballtest.code, 4))-1) ELSE LEFT(footballtest.code, 4)END = Leagues.code where Leagues.Code = '102' and   footballtest.season = '19' and thedate < CURDATE()  ORDER BY score, goal_diff desc LIMIT 5
) a
group by team
order by score desc, goal_diff desc

Open in new window


But this provides the error "incorrect usage of union and order by"
OK so I have edited my database and this is the code that i need to amend

Select hometeam , scor1, scor2 from footballresults where Code = '0101' and   Season = '19' and gamedate < CURDATE()

Open in new window


I believe it needs to look something like:

Select (each teamname from footballresults  and get last 5 games)hometeam , scor1, scor2 from footballresults where Code = '0101' and   Season = '19' and gamedate < CURDATE()

Open in new window

Hi Jay,

I'm not sure if the Order by on select line 15 and 17 can be different from line 20 (in your example)
To my opinion you only need to specify the order by en Limit on the main selection.
Becaus the "Select hometeam" and "Select awayteam" will result in 1 tabel, I assumed that you like
teh overal last 5. (or first 5 in desc. order)
I need to get last 5 games for home team and last 5 for away team though


urrently the script will pull every result for that league in the season but essentially i would like to loop for each team and get the last 5 results for EACH team so

Currently it gets all the games for each team ( select * from DB where season = '19')

I would like to only return the last 5 games for each team so:

Select * from(
Team A Last 5 games
Team B Last 5 games
Team C Last 5 games
Team D Last 5 games
Team E Last 5 games
)

Open in new window


for each teamname loop through and select only last 3 games order by gamedate (The following example is if I wanted the last 3 results per team)-

+--------+---+---+--+
| Team a | 1 | 1 |  |
+--------+---+---+--+
| Team a | 4 | 1 |  |
+--------+---+---+--+
| Team a | 1 | 3 |  |
+--------+---+---+--+
| Team b | 0 | 0 |  |
+--------+---+---+--+
| Team b | 1 | 2 |  |
+--------+---+---+--+
| Team b | 2 | 0 |  |
+--------+---+---+--+

Open in new window

Just change the predicate according to the error message:

SELECT *
FROM   (   SELECT hometeam AS team ,
                  code ,
                  season
           FROM   footballtest
           WHERE  CASE WHEN LEFT(code, 4) LIKE '0%' THEN RIGHT(LEFT(code, 4), LENGTH(LEFT(code, 4)) - 1)
                       ELSE LEFT(code, 4)
                  END = 102
                  AND season = 19
                  AND thedate < CURDATE()
           UNION ALL
           SELECT awayteam ,
                  code ,
                  season
           FROM   footballtest FT
           WHERE  CASE WHEN LEFT(code, 4) LIKE '0%' THEN RIGHT(LEFT(code, 4), LENGTH(LEFT(code, 4)) - 1)
                       ELSE LEFT(code, 4)
                  END = 102
                  AND season = 19
                  AND thedate < CURDATE()) T
       INNER JOIN footballtest G ON G.season = T.season
                                    AND G.code = T.code
                                    AND (   G.AwayTeam = T.Team
                                            OR G.HomeTeam = T.Team )
WHERE  EXISTS (   SELECT I.thedate
                        FROM   footballtest I
                        WHERE  I.season = T.season
                               AND I.code = T.code
                               AND (   I.AwayTeam = T.Team
                                       OR I.HomeTeam = T.Team )
							   AND I.thedate = G.thedate
                        ORDER BY I.thedate DESC
                        LIMIT 0, 5
    );

Open in new window

http://sqlfiddle.com/#!9/481db6/2
Seems to be close ste5an - no errors and but pulled all the teams home games - and then away games. so instead of limiting to just 5 it pulled all 38 games
Can you provide some sample data?
Sure - how much and what format?
As script with INSERT statements. Then we can run it..
I translated my headings for you to make is easier but here is an insert for all prem league games this season


CREATE TABLE `footballtest` (
	`id` INT(100) NOT NULL AUTO_INCREMENT,
	`codmeci` VARCHAR(50) NULL DEFAULT NULL,
	`datameci` DATE NULL DEFAULT NULL,
	`orameci` VARCHAR(255) NULL DEFAULT NULL,
	`sezonul` INT(11) NULL DEFAULT NULL,
	`etapa` INT(11) NULL DEFAULT NULL,
	`txtechipa1` VARCHAR(255) NULL DEFAULT NULL,
	`txtechipa2` VARCHAR(255) NULL DEFAULT NULL,
	`scor1` INT(11) NULL DEFAULT NULL,
	`scor2` INT(11) NULL DEFAULT NULL,
	`scorp1` INT(11) NULL DEFAULT NULL,
	`scorp2` INT(11) NULL DEFAULT NULL,
	`codechipa1` INT(11) NULL DEFAULT NULL,
	`codechipa2` INT(11) NULL DEFAULT NULL,
	`cotaa` DECIMAL(10,2) NULL DEFAULT NULL,
	`cotae` DECIMAL(10,2) NULL DEFAULT NULL,
	`cotad` DECIMAL(10,2) NULL DEFAULT NULL,
	`cotao` DECIMAL(10,2) NULL DEFAULT NULL,
	`cotau` DECIMAL(10,2) NULL DEFAULT NULL,
	`suth` INT(11) NULL DEFAULT NULL,
	`suta` INT(11) NULL DEFAULT NULL,
	`sutht` INT(11) NULL DEFAULT NULL,
	`sutat` INT(11) NULL DEFAULT NULL,
	`corh` INT(11) NULL DEFAULT NULL,
	`cora` INT(11) NULL DEFAULT NULL,
	`foulsh` INT(11) NULL DEFAULT NULL,
	`foulsa` INT(11) NULL DEFAULT NULL,
	`yellowh` INT(11) NULL DEFAULT NULL,
	`yellowa` INT(11) NULL DEFAULT NULL,
	`ballph` INT(11) NULL DEFAULT NULL,
	`ballpa` INT(11) NULL DEFAULT NULL,
	`mgolh` VARCHAR(50) NULL DEFAULT NULL,
	`mgola` VARCHAR(50) NULL DEFAULT NULL,
	`mgol` VARCHAR(50) NULL DEFAULT NULL,
	PRIMARY KEY (`id`),
	UNIQUE INDEX `codmeci` (`codmeci`),
	INDEX `ids` (`id`)
)
COLLATE='utf8_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=530494
;

Open in new window


INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005691', '2019-05-12', '', 19, 38, 'Tottenham', 'Everton', 0, 0, 0, 0, 1001, 1017, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005692', '2019-05-12', '', 19, 38, 'Southampton', 'Huddersfield', 0, 0, 0, 0, 1004, 1064, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005693', '2019-05-12', '', 19, 38, 'Man Utd', 'Cardiff', 0, 0, 0, 0, 1020, 1039, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005694', '2019-05-12', '', 19, 38, 'Liverpool', 'Wolves', 0, 0, 0, 0, 1002, 1031, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005695', '2019-05-12', '', 19, 38, 'Leicester', 'Chelsea', 0, 0, 0, 0, 1042, 1019, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005696', '2019-05-12', '', 19, 38, 'Fulham', 'Newcastle', 0, 0, 0, 0, 1010, 1016, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005697', '2019-05-12', '', 19, 38, 'Crystal Palace', 'Bournemouth', 0, 0, 0, 0, 1012, 1063, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005698', '2019-05-12', '', 19, 38, 'Burnley', 'Arsenal', 0, 0, 0, 0, 1030, 1018, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005699', '2019-05-12', '', 19, 38, 'Brighton', 'Man City', 0, 0, 0, 0, 1036, 1009, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005700', '2019-05-12', '', 19, 38, 'Watford', 'West Ham', 0, 0, 0, 0, 1025, 1022, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005681', '2019-05-04', '', 19, 37, 'Everton', 'Burnley', 0, 0, 0, 0, 1017, 1030, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005682', '2019-05-04', '', 19, 37, 'Arsenal', 'Brighton', 0, 0, 0, 0, 1018, 1036, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005683', '2019-05-04', '', 19, 37, 'Bournemouth', 'Tottenham', 0, 0, 0, 0, 1063, 1001, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005684', '2019-05-04', '', 19, 37, 'Chelsea', 'Watford', 0, 0, 0, 0, 1019, 1025, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005685', '2019-05-04', '', 19, 37, 'Cardiff', 'Crystal Palace', 0, 0, 0, 0, 1039, 1012, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005686', '2019-05-04', '', 19, 37, 'Huddersfield', 'Man Utd', 0, 0, 0, 0, 1064, 1020, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005687', '2019-05-04', '', 19, 37, 'Wolves', 'Fulham', 0, 0, 0, 0, 1031, 1010, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005688', '2019-05-04', '', 19, 37, 'West Ham', 'Southampton', 0, 0, 0, 0, 1022, 1004, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005689', '2019-05-04', '', 19, 37, 'Newcastle', 'Liverpool', 0, 0, 0, 0, 1016, 1002, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005690', '2019-05-04', '', 19, 37, 'Man City', 'Leicester', 0, 0, 0, 0, 1009, 1042, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005671', '2019-04-27', '', 19, 36, 'Leicester', 'Arsenal', 0, 0, 0, 0, 1042, 1018, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005672', '2019-04-27', '', 19, 36, 'Brighton', 'Newcastle', 0, 0, 0, 0, 1036, 1016, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005673', '2019-04-27', '', 19, 36, 'Burnley', 'Man City', 0, 0, 0, 0, 1030, 1009, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005674', '2019-04-27', '', 19, 36, 'Fulham', 'Cardiff', 0, 0, 0, 0, 1010, 1039, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005675', '2019-04-27', '', 19, 36, 'Crystal Palace', 'Everton', 0, 0, 0, 0, 1012, 1017, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005676', '2019-04-27', '', 19, 36, 'Liverpool', 'Huddersfield', 0, 0, 0, 0, 1002, 1064, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005677', '2019-04-27', '', 19, 36, 'Tottenham', 'West Ham', 0, 0, 0, 0, 1001, 1022, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005678', '2019-04-27', '', 19, 36, 'Southampton', 'Bournemouth', 0, 0, 0, 0, 1004, 1063, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005679', '2019-04-27', '', 19, 36, 'Man Utd', 'Chelsea', 0, 0, 0, 0, 1020, 1019, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005680', '2019-04-27', '', 19, 36, 'Watford', 'Wolves', 0, 0, 0, 0, 1025, 1031, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005664', '2019-04-20', '', 19, 35, 'Cardiff', 'Liverpool', 0, 0, 0, 0, 1039, 1002, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005665', '2019-04-20', '', 19, 35, 'Huddersfield', 'Watford', 0, 0, 0, 0, 1064, 1025, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005666', '2019-04-20', '', 19, 35, 'Everton', 'Man Utd', 0, 0, 0, 0, 1017, 1020, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005667', '2019-04-20', '', 19, 35, 'Wolves', 'Brighton', 0, 0, 0, 0, 1031, 1036, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005668', '2019-04-20', '', 19, 35, 'West Ham', 'Leicester', 0, 0, 0, 0, 1022, 1042, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005669', '2019-04-20', '', 19, 35, 'Newcastle', 'Southampton', 0, 0, 0, 0, 1016, 1004, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005670', '2019-04-20', '', 19, 35, 'Man City', 'Tottenham', 0, 0, 0, 0, 1009, 1001, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005661', '2019-04-20', '', 19, 35, 'Chelsea', 'Burnley', 0, 0, 0, 0, 1019, 1030, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005662', '2019-04-20', '', 19, 35, 'Arsenal', 'Crystal Palace', 0, 0, 0, 0, 1018, 1012, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005663', '2019-04-20', '', 19, 35, 'Bournemouth', 'Fulham', 0, 0, 0, 0, 1063, 1010, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005651', '2019-04-13', '', 19, 34, 'Brighton', 'Bournemouth', 0, 0, 0, 0, 1036, 1063, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005652', '2019-04-13', '', 19, 34, 'Burnley', 'Cardiff', 0, 0, 0, 0, 1030, 1039, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005653', '2019-04-13', '', 19, 34, 'Fulham', 'Everton', 0, 0, 0, 0, 1010, 1017, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005654', '2019-04-13', '', 19, 34, 'Crystal Palace', 'Man City', 0, 0, 0, 0, 1012, 1009, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005655', '2019-04-13', '', 19, 34, 'Southampton', 'Wolves', 0, 0, 0, 0, 1004, 1031, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005656', '2019-04-13', '', 19, 34, 'Leicester', 'Newcastle', 0, 0, 0, 0, 1042, 1016, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005657', '2019-04-13', '', 19, 34, 'Man Utd', 'West Ham', 0, 0, 0, 0, 1020, 1022, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005658', '2019-04-13', '', 19, 34, 'Tottenham', 'Huddersfield', 0, 0, 0, 0, 1001, 1064, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005659', '2019-04-13', '', 19, 34, 'Watford', 'Arsenal', 0, 0, 0, 0, 1025, 1018, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005660', '2019-04-13', '', 19, 34, 'Liverpool', 'Chelsea', 0, 0, 0, 0, 1002, 1019, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005642', '2019-04-07', '1405', 19, 33, 'Everton', 'Arsenal', 0, 0, 0, 0, 1017, 1018, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005647', '2019-04-07', '1630', 19, 33, 'Tottenham', 'Brighton', 0, 0, 0, 0, 1001, 1036, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005641', '2019-04-06', '', 19, 33, 'Chelsea', 'West Ham', 0, 0, 0, 0, 1019, 1022, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005643', '2019-04-06', '1500', 19, 33, 'Huddersfield', 'Leicester', 0, 0, 0, 0, 1064, 1042, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005644', '2019-04-06', '1230', 19, 33, 'Man City', 'Cardiff', 0, 0, 0, 0, 1009, 1039, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005646', '2019-04-06', '1500', 19, 33, 'Newcastle', 'Crystal Palace', 0, 0, 0, 0, 1016, 1012, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005648', '2019-04-06', '1500', 19, 33, 'Watford', 'Fulham', 0, 0, 0, 0, 1025, 1010, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005650', '2019-04-06', '1500', 19, 33, 'Bournemouth', 'Burnley', 0, 0, 0, 0, 1063, 1030, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005645', '2019-04-05', '2000', 19, 33, 'Southampton', 'Liverpool', 0, 0, 0, 0, 1004, 1002, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005649', '2019-04-02', '1945', 19, 33, 'Wolves', 'Man Utd', 0, 0, 0, 0, 1031, 1020, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005640', '2019-04-01', '2000', 19, 32, 'Arsenal', 'Newcastle', 0, 0, 0, 0, 1018, 1016, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005633', '2019-03-31', '1630', 19, 32, 'Liverpool', 'Tottenham', 0, 0, 0, 0, 1002, 1001, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005637', '2019-03-31', '1405', 19, 32, 'Cardiff', 'Chelsea', 0, 0, 0, 0, 1039, 1019, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005631', '2019-03-30', '1230', 19, 32, 'Fulham', 'Man City', 0, 0, 0, 0, 1010, 1009, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005632', '2019-03-30', '1500', 19, 32, 'Man Utd', 'Watford', 0, 0, 0, 0, 1020, 1025, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005634', '2019-03-30', '1500', 19, 32, 'Leicester', 'Bournemouth', 0, 0, 0, 0, 1042, 1063, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005635', '2019-03-30', '1730', 19, 32, 'West Ham', 'Everton', 0, 0, 0, 0, 1022, 1017, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005636', '2019-03-30', '1500', 19, 32, 'Crystal Palace', 'Huddersfield', 0, 0, 0, 0, 1012, 1064, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005638', '2019-03-30', '1500', 19, 32, 'Burnley', 'Wolves', 0, 0, 0, 0, 1030, 1031, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005639', '2019-03-30', '1500', 19, 32, 'Brighton', 'Southampton', 0, 0, 0, 0, 1036, 1004, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005624', '2019-03-17', '1200', 19, 31, 'Tottenham', 'Crystal Palace', 0, 0, 0, 0, 1001, 1012, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005626', '2019-03-17', '1415', 19, 31, 'Fulham', 'Liverpool', 1, 2, 0, 1, 1010, 1002, 11.36, 6.66, 1.26, 1.53, 2.65, 7, 16, 2, 6, 1, 10, 11, 7, 2, 1, 37, 63, '00000000000000000000000000000000000000000000000000', '00000000000000000000000001000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005630', '2019-03-17', '1630', 19, 31, 'Everton', 'Chelsea', 2, 0, 0, 0, 1017, 1019, 4.42, 3.78, 1.88, 1.99, 1.93, 15, 16, 8, 5, 3, 4, 17, 9, 1, 2, 33, 67, '00000000000000000000000000000000000000000000000010', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005621', '2019-03-16', '1230', 19, 31, 'Man Utd', 'Man City', 0, 0, 0, 0, 1020, 1009, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005623', '2019-03-16', '1500', 19, 31, 'Watford', 'Southampton', 0, 0, 0, 0, 1025, 1004, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005625', '2019-03-16', '1500', 19, 31, 'Wolves', 'Arsenal', 0, 0, 0, 0, 1031, 1018, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005628', '2019-03-16', '1500', 19, 31, 'Brighton', 'Cardiff', 0, 0, 0, 0, 1036, 1039, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005622', '2019-03-16', '1500', 19, 31, 'West Ham', 'Huddersfield', 4, 3, 1, 2, 1022, 1064, 1.66, 3.80, 6.30, 2.11, 1.82, 16, 16, 5, 5, 5, 8, 7, 15, 0, 2, 64, 36, '00000000000000100000000000000000000000000000000000', '00000000000000001000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005627', '2019-03-16', '1500', 19, 31, 'Burnley', 'Leicester', 1, 2, 1, 1, 1030, 1042, 3.15, 3.43, 2.42, 1.99, 1.93, 13, 9, 2, 4, 9, 3, 9, 10, 1, 1, 62, 38, '00000000000000000000000000000000000001000000000000', '00000000000000000000000000000000100000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005629', '2019-03-16', '1500', 19, 31, 'Bournemouth', 'Newcastle', 2, 2, 0, 1, 1063, 1016, 2.13, 3.56, 3.67, 1.99, 1.93, 10, 12, 3, 4, 6, 6, 9, 12, 3, 2, 49, 51, '00000000000000000000000000000000000000000000000100', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005611', '2019-03-10', '1200', 19, 30, 'Liverpool', 'Burnley', 4, 2, 2, 1, 1002, 1030, 1.17, 7.88, 19.08, 1.45, 2.80, 23, 3, 5, 2, 7, 3, 4, 7, 2, 0, 69, 31, '00000000000000000010000000001000000000000000000000', '00000100000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005618', '2019-03-10', '1405', 19, 30, 'Chelsea', 'Wolves', 1, 1, 0, 0, 1019, 1031, 1.53, 4.28, 7.35, 1.97, 1.96, 22, 2, 6, 1, 13, 0, 8, 14, 1, 4, 76, 24, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005620', '2019-03-10', '1630', 19, 30, 'Arsenal', 'Man Utd', 2, 0, 1, 0, 1018, 1020, 2.44, 3.57, 3.04, 1.65, 2.39, 14, 14, 3, 4, 5, 2, 12, 18, 2, 2, 46, 54, '00000000000100000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005612', '2019-03-09', '1500', 19, 30, 'Southampton', 'Tottenham', 2, 1, 0, 1, 1004, 1001, 4.38, 3.82, 1.88, 1.84, 2.08, 12, 16, 4, 5, 1, 10, 16, 9, 4, 2, 37, 63, '00000000000000000000000000000000000000000000000000', '00000000000000000000000001000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005613', '2019-03-09', '1500', 19, 30, 'Newcastle', 'Everton', 3, 2, 0, 2, 1016, 1017, 2.85, 3.21, 2.78, 2.43, 1.62, 19, 7, 7, 3, 8, 2, 13, 10, 3, 1, 46, 54, '00000000000000000000000000000000000000000000000000', '00000000000000000100000000000001000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005614', '2019-03-09', '1730', 19, 30, 'Man City', 'Watford', 3, 1, 0, 0, 1009, 1025, 1.16, 8.59, 18.60, 1.32, 3.50, 19, 2, 9, 1, 9, 1, 11, 7, 1, 1, 71, 29, '00000000000000000000000000000000000000000000010001', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005615', '2019-03-09', '1500', 19, 30, 'Huddersfield', 'Bournemouth', 0, 2, 0, 1, 1064, 1063, 3.33, 3.28, 2.40, 2.31, 1.68, 8, 8, 1, 4, 6, 5, 14, 9, 3, 1, 56, 44, '00000000000000000000000000000000000000000000000000', '00000000000000000001000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005616', '2019-03-09', '1500', 19, 30, 'Leicester', 'Fulham', 3, 1, 1, 0, 1042, 1010, 1.59, 4.41, 5.83, 1.70, 2.27, 18, 6, 8, 3, 6, 5, 9, 13, 0, 2, 53, 47, '00000000000000000000100000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005617', '2019-03-09', '1230', 19, 30, 'Crystal Palace', 'Brighton', 1, 2, 0, 1, 1012, 1036, 1.87, 3.55, 4.88, 2.26, 1.72, 15, 4, 3, 3, 8, 0, 8, 18, 1, 5, 63, 37, '00000000000000000000000000000000000000000000000001', '00000000000000000010000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005619', '2019-03-09', '1500', 19, 30, 'Cardiff', 'West Ham', 2, 0, 1, 0, 1039, 1022, 3.55, 3.43, 2.23, 1.96, 1.96, 16, 9, 7, 2, 7, 5, 7, 12, 2, 1, 29, 71, '00010000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005605', '2019-03-03', '1200', 19, 29, 'Watford', 'Leicester', 2, 1, 1, 0, 1025, 1042, 2.61, 3.39, 2.94, 1.93, 1.99, 6, 14, 5, 2, 1, 5, 15, 12, 5, 1, 39, 61, '00001000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005606', '2019-03-03', '1405', 19, 29, 'Fulham', 'Chelsea', 1, 2, 1, 2, 1010, 1019, 7.01, 4.72, 1.50, 1.73, 2.25, 12, 21, 5, 7, 5, 4, 11, 10, 2, 1, 36, 64, '00000000000000000000000000100000000000000000000000', '00000000000000000001000000000010000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005610', '2019-03-03', '1615', 19, 29, 'Everton', 'Liverpool', 0, 0, 0, 0, 1017, 1002, 6.18, 4.18, 1.61, 1.89, 2.04, 7, 10, 3, 3, 3, 7, 12, 10, 1, 2, 42, 58, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005601', '2019-03-02', '1500', 19, 29, 'Man Utd', 'Southampton', 3, 2, 0, 1, 1020, 1004, 1.46, 4.56, 8.20, 1.72, 2.25, 16, 9, 6, 3, 9, 7, 7, 10, 2, 1, 64, 36, '00000000000000000000000000000000000000000000000000', '00000000000000000000000001000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005602', '2019-03-02', '1730', 19, 29, 'West Ham', 'Newcastle', 2, 0, 2, 0, 1022, 1016, 2.14, 3.47, 3.77, 2.06, 1.87, 10, 17, 4, 2, 1, 6, 8, 14, 3, 4, 56, 44, '00000010000000000000000000000000000000000100000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005603', '2019-03-02', '1500', 19, 29, 'Wolves', 'Cardiff', 2, 0, 2, 0, 1031, 1039, 1.55, 4.10, 7.25, 2.16, 1.79, 13, 12, 6, 4, 7, 8, 11, 6, 1, 2, 56, 44, '00000000000000010100000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005604', '2019-03-02', '1230', 19, 29, 'Tottenham', 'Arsenal', 1, 1, 0, 1, 1001, 1018, 2.08, 3.67, 3.74, 1.64, 2.41, 10, 9, 3, 4, 3, 4, 15, 14, 3, 2, 60, 40, '00000000000000000000000000000000000000000000000000', '00000000000000010000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005607', '2019-03-02', '1500', 19, 29, 'Burnley', 'Crystal Palace', 1, 3, 0, 1, 1030, 1012, 2.93, 3.26, 2.67, 2.12, 1.81, 18, 10, 4, 4, 8, 5, 9, 9, 1, 2, 57, 43, '00000000000000000000000000000000000000000000000000', '00000000000000100000000000000000000000000000000100', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005608', '2019-03-02', '1500', 19, 29, 'Brighton', 'Huddersfield', 1, 0, 0, 0, 1036, 1064, 1.83, 3.50, 5.22, 2.58, 1.56, 13, 6, 4, 4, 6, 3, 11, 6, 2, 2, 53, 47, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005609', '2019-03-02', '1500', 19, 29, 'Bournemouth', 'Man City', 0, 1, 0, 0, 1063, 1009, 12.62, 7.02, 1.23, 1.42, 2.95, 0, 23, 0, 7, 0, 14, 7, 7, 1, 2, 18, 82, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005591', '2019-02-27', '1945', 19, 28, 'Arsenal', 'Bournemouth', 5, 1, 2, 1, 1018, 1063, 1.45, 4.92, 7.50, 1.52, 2.67, 16, 13, 6, 5, 9, 4, 11, 9, 2, 2, 65, 35, '00010000000000000000000000100000000000000000001000', '00000000000000000000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005595', '2019-02-27', '2000', 19, 28, 'Crystal Palace', 'Man Utd', 1, 3, 0, 1, 1012, 1020, 3.30, 3.40, 2.36, 1.93, 1.99, 17, 13, 2, 4, 5, 6, 8, 9, 2, 3, 45, 55, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000100000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005596', '2019-02-27', '2000', 19, 28, 'Chelsea', 'Tottenham', 2, 0, 0, 0, 1019, 1001, 2.32, 3.51, 3.31, 1.86, 2.07, 11, 9, 1, 0, 2, 2, 7, 14, 1, 1, 47, 53, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005598', '2019-02-27', '1945', 19, 28, 'Southampton', 'Fulham', 2, 0, 2, 0, 1004, 1010, 1.93, 3.66, 4.33, 1.92, 2.00, 14, 14, 4, 4, 7, 4, 15, 13, 0, 1, 41, 59, '00000000000000000000001000000000000000010000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005599', '2019-02-27', '2000', 19, 28, 'Liverpool', 'Watford', 5, 0, 2, 0, 1002, 1025, 1.28, 5.89, 12.41, 1.57, 2.51, 19, 5, 10, 3, 6, 4, 5, 7, 0, 2, 62, 38, '00000000100000000001000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005600', '2019-02-27', '2000', 19, 28, 'Man City', 'West Ham', 1, 0, 0, 0, 1009, 1022, 1.16, 8.21, 19.14, 1.32, 3.50, 20, 2, 7, 1, 12, 2, 2, 6, 0, 2, 75, 25, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005592', '2019-02-26', '1945', 19, 28, 'Cardiff', 'Everton', 0, 3, 0, 1, 1039, 1017, 3.83, 3.40, 2.14, 2.14, 1.79, 6, 12, 0, 4, 3, 4, 12, 12, 3, 1, 33, 67, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000001000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005593', '2019-02-26', '1945', 19, 28, 'Huddersfield', 'Wolves', 1, 0, 0, 0, 1064, 1031, 4.99, 3.55, 1.85, 2.56, 1.56, 15, 7, 3, 0, 3, 5, 10, 10, 2, 2, 50, 50, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005594', '2019-02-26', '1945', 19, 28, 'Leicester', 'Brighton', 2, 1, 1, 0, 1042, 1036, 1.95, 3.45, 4.52, 2.28, 1.70, 19, 15, 3, 3, 4, 8, 6, 4, 1, 1, 49, 51, '00000000010000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005597', '2019-02-26', '2000', 19, 28, 'Newcastle', 'Burnley', 2, 0, 2, 0, 1016, 1030, 2.13, 3.36, 3.91, 2.39, 1.64, 12, 12, 3, 2, 4, 7, 8, 8, 1, 3, 54, 46, '00000000000000000000000100000000000001000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005584', '2019-02-24', '1405', 19, 27, 'Man Utd', 'Liverpool', 0, 0, 0, 0, 1020, 1002, 3.19, 3.55, 2.36, 1.83, 2.11, 6, 7, 3, 1, 3, 7, 15, 17, 1, 3, 36, 64, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005587', '2019-02-24', '1200', 19, 27, 'Chelsea', 'Brighton', 0, 0, 0, 0, 1019, 1036, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005590', '2019-02-24', '1405', 19, 27, 'Arsenal', 'Southampton', 2, 0, 2, 0, 1018, 1004, 1.51, 4.62, 6.80, 1.58, 2.50, 12, 10, 4, 4, 6, 4, 7, 14, 0, 0, 62, 38, '00000100000000001000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005581', '2019-02-23', '1730', 19, 27, 'Leicester', 'Crystal Palace', 1, 4, 0, 1, 1042, 1012, 2.26, 3.33, 3.62, 2.25, 1.73, 27, 7, 5, 5, 8, 3, 7, 14, 2, 1, 65, 35, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000010000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005583', '2019-02-23', '1500', 19, 27, 'Newcastle', 'Huddersfield', 2, 0, 0, 0, 1016, 1064, 1.86, 3.41, 5.16, 2.55, 1.56, 29, 3, 12, 1, 12, 0, 11, 7, 2, 0, 54, 46, '00000000000000000000000000000000000000000000010000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005585', '2019-02-23', '1500', 19, 27, 'Bournemouth', 'Wolves', 1, 1, 1, 0, 1063, 1031, 2.86, 3.38, 2.66, 2.04, 1.88, 10, 10, 3, 2, 9, 8, 10, 15, 4, 5, 45, 55, '00000000000001000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005589', '2019-02-23', '1230', 19, 27, 'Burnley', 'Tottenham', 2, 1, 0, 0, 1030, 1001, 5.74, 3.88, 1.69, 1.79, 2.16, 10, 17, 4, 6, 7, 6, 9, 12, 1, 3, 31, 69, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005582', '2019-02-22', '1945', 19, 27, 'West Ham', 'Fulham', 3, 1, 2, 1, 1022, 1010, 1.85, 3.96, 4.34, 1.70, 2.27, 21, 8, 7, 5, 12, 0, 11, 11, 1, 1, 55, 45, '00000000000000000000000000001000000000010000000000', '00100000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005588', '2019-02-22', '1945', 19, 27, 'Cardiff', 'Watford', 1, 5, 0, 1, 1039, 1025, 3.15, 3.35, 2.46, 2.08, 1.85, 15, 12, 6, 7, 3, 3, 10, 11, 1, 2, 36, 64, '00000000000000000000000000000000000000000000000000', '00000000000000000100000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005571', '2019-02-11', '2000', 19, 26, 'Wolves', 'Newcastle', 1, 1, 0, 0, 1031, 1016, 1.71, 3.72, 5.92, 2.29, 1.70, 22, 9, 6, 3, 13, 1, 7, 9, 1, 3, 59, 41, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005574', '2019-02-10', '1330', 19, 26, 'Tottenham', 'Leicester', 3, 1, 1, 0, 1001, 1042, 1.72, 3.76, 5.72, 1.89, 2.04, 12, 20, 5, 9, 2, 9, 11, 4, 3, 1, 53, 47, '00000000000000000000000000000000100000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005576', '2019-02-10', '1600', 19, 26, 'Man City', 'Chelsea', 6, 0, 4, 0, 1009, 1019, 1.51, 4.68, 6.92, 1.64, 2.41, 15, 12, 9, 4, 2, 2, 9, 13, 1, 2, 56, 44, '00010000000010000010000010000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005572', '2019-02-09', '1500', 19, 26, 'Southampton', 'Cardiff', 1, 2, 0, 0, 1004, 1039, 1.78, 3.77, 5.06, 2.12, 1.81, 14, 6, 7, 3, 8, 2, 15, 12, 3, 3, 66, 34, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005573', '2019-02-09', '1500', 19, 26, 'Watford', 'Everton', 1, 0, 0, 0, 1025, 1017, 2.41, 3.35, 3.24, 2.00, 1.92, 7, 9, 2, 4, 8, 2, 21, 10, 2, 2, 44, 56, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005575', '2019-02-09', '1500', 19, 26, 'Crystal Palace', 'West Ham', 1, 1, 0, 1, 1012, 1022, 2.14, 3.48, 3.72, 2.02, 1.90, 25, 6, 5, 4, 10, 4, 12, 9, 3, 0, 57, 43, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000100000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005577', '2019-02-09', '1500', 19, 26, 'Liverpool', 'Bournemouth', 3, 0, 2, 0, 1002, 1063, 1.19, 7.53, 16.02, 1.42, 2.95, 20, 12, 9, 2, 8, 5, 14, 6, 2, 2, 66, 34, '00000000000000000000000100000000010000000000000100', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005578', '2019-02-09', '1500', 19, 26, 'Huddersfield', 'Arsenal', 1, 2, 0, 2, 1064, 1018, 5.72, 4.32, 1.61, 1.83, 2.10, 15, 9, 6, 4, 5, 0, 17, 12, 3, 2, 55, 45, '00000000000000000000000000000000000000000000000000', '00000000000000010000000000000000000000000001000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005579', '2019-02-09', '1230', 19, 26, 'Fulham', 'Man Utd', 0, 3, 0, 2, 1010, 1020, 4.94, 4.17, 1.73, 1.66, 2.37, 15, 15, 3, 7, 5, 4, 14, 9, 3, 2, 51, 49, '00000000000000000000000000000000000000000000000000', '00000000000001000000001000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005580', '2019-02-09', '1730', 19, 26, 'Brighton', 'Burnley', 1, 3, 0, 1, 1036, 1030, 2.05, 3.37, 4.25, 2.41, 1.64, 16, 9, 6, 5, 9, 3, 8, 7, 1, 1, 68, 32, '00000000000000000000000000000000000000000000000000', '00000000000000000000000001000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005586', '2019-02-06', '1945', 19, 27, 'Everton', 'Man City', 0, 2, 0, 1, 1017, 1009, 10.40, 6.15, 1.30, 1.52, 2.67, 4, 15, 1, 4, 5, 6, 12, 6, 1, 1, 38, 62, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005569', '2019-02-04', '2000', 19, 25, 'West Ham', 'Liverpool', 1, 1, 1, 1, 1022, 1002, 7.93, 5.36, 1.39, 1.65, 2.36, 13, 11, 2, 6, 2, 5, 9, 11, 1, 1, 27, 73, '00000000000000000000000000010000000000000000000000', '00000000000000000000010000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005566', '2019-02-03', '1405', 19, 25, 'Leicester', 'Man Utd', 0, 1, 0, 1, 1042, 1020, 3.90, 3.61, 2.06, 1.81, 2.14, 17, 10, 6, 6, 7, 2, 14, 9, 4, 4, 45, 55, '00000000000000000000000000000000000000000000000000', '00000000100000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005567', '2019-02-03', '1630', 19, 25, 'Man City', 'Arsenal', 3, 1, 2, 1, 1009, 1018, 1.26, 7.05, 10.59, 1.34, 3.40, 19, 4, 12, 2, 4, 2, 11, 8, 1, 1, 59, 41, '10000000000000000000000000000000000000000001000000', '00000000001000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005561', '2019-02-02', '1500', 19, 25, 'Burnley', 'Southampton', 1, 1, 0, 0, 1030, 1004, 2.56, 3.42, 2.95, 2.10, 1.83, 15, 10, 6, 4, 4, 2, 10, 9, 3, 1, 54, 46, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005562', '2019-02-02', '1730', 19, 25, 'Cardiff', 'Bournemouth', 2, 0, 1, 0, 1039, 1063, 3.24, 3.51, 2.35, 1.93, 2.01, 12, 9, 5, 2, 6, 7, 17, 14, 1, 2, 27, 73, '00001000000000000000000000000000000000000000010000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005563', '2019-02-02', '1500', 19, 25, 'Chelsea', 'Huddersfield', 5, 0, 2, 0, 1019, 1064, 1.24, 6.46, 13.20, 1.74, 2.21, 23, 5, 7, 2, 11, 2, 8, 5, 0, 0, 65, 35, '00000000000000010000000000000000000000000000100000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005564', '2019-02-02', '1500', 19, 25, 'Crystal Palace', 'Fulham', 2, 0, 1, 0, 1012, 1010, 1.93, 3.71, 4.21, 1.99, 1.93, 17, 8, 6, 0, 11, 1, 9, 12, 2, 3, 37, 63, '00000000000000000000000010000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005565', '2019-02-02', '1500', 19, 25, 'Everton', 'Wolves', 1, 3, 1, 2, 1017, 1031, 2.63, 3.24, 3.00, 2.15, 1.79, 13, 8, 4, 4, 3, 1, 12, 14, 3, 1, 64, 36, '00000000000000000000000000100000000000000000000000', '00000010000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005568', '2019-02-02', '1230', 19, 25, 'Tottenham', 'Newcastle', 1, 0, 0, 0, 1001, 1016, 1.44, 4.39, 9.28, 1.91, 2.01, 21, 8, 4, 2, 6, 3, 6, 6, 0, 1, 72, 28, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005570', '2019-02-02', '1500', 19, 25, 'Brighton', 'Watford', 0, 0, 0, 0, 1036, 1025, 2.65, 3.31, 2.92, 2.15, 1.79, 21, 5, 4, 0, 7, 0, 15, 10, 1, 0, 55, 45, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005552', '2019-01-30', '1945', 19, 24, 'Bournemouth', 'Chelsea', 4, 0, 0, 0, 1063, 1019, 5.38, 4.22, 1.66, 1.75, 2.21, 12, 11, 7, 7, 3, 7, 9, 6, 1, 0, 31, 69, '00000000000000000000000000000000000000000000001000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005558', '2019-01-30', '1945', 19, 24, 'Southampton', 'Crystal Palace', 1, 1, 0, 1, 1004, 1012, 2.46, 3.29, 3.21, 2.14, 1.79, 13, 15, 4, 3, 3, 8, 11, 8, 2, 4, 58, 42, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000001000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005559', '2019-01-30', '2000', 19, 24, 'Tottenham', 'Watford', 2, 1, 0, 1, 1001, 1025, 1.66, 3.94, 5.87, 1.78, 2.16, 17, 9, 3, 1, 9, 5, 6, 9, 0, 4, 69, 31, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000001000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005560', '2019-01-30', '2000', 19, 24, 'Liverpool', 'Leicester', 1, 1, 1, 1, 1002, 1042, 1.25, 6.47, 12.87, 1.53, 2.61, 10, 5, 3, 2, 7, 1, 13, 6, 1, 3, 72, 28, '00100000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005551', '2019-01-29', '1945', 19, 24, 'Arsenal', 'Cardiff', 2, 1, 0, 0, 1018, 1039, 1.25, 6.39, 12.54, 1.49, 2.70, 15, 19, 4, 2, 4, 7, 14, 12, 3, 3, 71, 29, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005553', '2019-01-29', '1945', 19, 24, 'Fulham', 'Brighton', 4, 2, 0, 2, 1010, 1036, 2.42, 3.25, 3.32, 2.34, 1.67, 24, 15, 7, 6, 10, 1, 10, 5, 2, 3, 62, 38, '00000000000000000000000000000000000000000000001000', '00100000000000001000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005554', '2019-01-29', '1945', 19, 24, 'Huddersfield', 'Everton', 0, 1, 0, 1, 1064, 1017, 4.05, 3.30, 2.11, 2.32, 1.68, 10, 10, 2, 5, 3, 4, 13, 10, 1, 4, 58, 42, '00000000000000000000000000000000000000000000000000', '00100000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005555', '2019-01-29', '1945', 19, 24, 'Wolves', 'West Ham', 3, 0, 0, 0, 1031, 1022, 2.07, 3.55, 3.90, 1.98, 1.93, 20, 4, 9, 0, 5, 1, 8, 10, 4, 1, 55, 45, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005556', '2019-01-29', '2000', 19, 24, 'Man Utd', 'Burnley', 2, 2, 0, 0, 1020, 1030, 1.27, 6.06, 12.59, 1.53, 2.60, 28, 6, 9, 4, 11, 3, 10, 9, 1, 3, 74, 26, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005557', '2019-01-29', '2000', 19, 24, 'Newcastle', 'Man City', 2, 1, 0, 1, 1016, 1009, 14.44, 7.63, 1.20, 1.52, 2.59, 6, 12, 2, 4, 1, 8, 9, 7, 2, 3, 24, 76, '00000000000000000000000000000000000000000000000000', '10000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005547', '2019-01-20', '1330', 19, 23, 'Huddersfield', 'Man City', 0, 3, 0, 1, 1064, 1009, 21.94, 8.50, 1.15, 1.45, 2.80, 5, 12, 2, 4, 1, 4, 10, 9, 2, 2, 32, 68, '00000000000000000000000000000000000000000000000000', '00000000000000000100000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005548', '2019-01-20', '1600', 19, 23, 'Fulham', 'Tottenham', 1, 2, 1, 0, 1010, 1001, 5.58, 3.66, 1.74, 1.94, 1.96, 12, 14, 4, 5, 7, 10, 10, 8, 2, 3, 27, 73, '00000000000000001000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005541', '2019-01-19', '1500', 19, 23, 'Man Utd', 'Brighton', 2, 1, 2, 0, 1020, 1036, 1.31, 5.75, 10.99, 1.73, 2.23, 20, 7, 5, 3, 6, 5, 11, 11, 1, 0, 56, 44, '00000000000000000000000000100000000000000100000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005542', '2019-01-19', '1230', 19, 23, 'Wolves', 'Leicester', 4, 3, 2, 0, 1031, 1042, 2.33, 3.20, 3.60, 2.49, 1.60, 12, 16, 7, 6, 5, 9, 11, 10, 3, 3, 46, 54, '00010000000100000000000000000000000000000000000000', '00000000000000000000000000000000000000000000001000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005543', '2019-01-19', '1500', 19, 23, 'Watford', 'Burnley', 0, 0, 0, 0, 1025, 1030, 1.65, 4.03, 5.81, 1.86, 2.06, 9, 11, 4, 3, 1, 7, 14, 9, 1, 2, 55, 45, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005544', '2019-01-19', '1500', 19, 23, 'Southampton', 'Everton', 2, 1, 0, 0, 1004, 1017, 2.88, 3.39, 2.64, 1.94, 1.98, 11, 7, 4, 2, 7, 6, 12, 11, 2, 1, 39, 61, '00000000000000000000000000000000000000000000000001', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005545', '2019-01-19', '1500', 19, 23, 'Newcastle', 'Cardiff', 3, 0, 1, 0, 1016, 1039, 2.02, 3.28, 4.50, 2.47, 1.60, 16, 9, 6, 1, 7, 10, 11, 6, 0, 1, 53, 47, '00000000000000000000000100000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005546', '2019-01-19', '1500', 19, 23, 'Liverpool', 'Crystal Palace', 4, 3, 0, 1, 1002, 1012, 1.20, 7.23, 15.74, 1.53, 2.60, 19, 9, 9, 3, 8, 3, 6, 8, 2, 1, 70, 30, '00000000000000000000000000000000000000000000010000', '00000000000000000000000000000000010000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005549', '2019-01-19', '1500', 19, 23, 'Bournemouth', 'West Ham', 2, 0, 0, 0, 1063, 1022, 2.34, 3.69, 3.09, 1.64, 2.38, 10, 9, 4, 1, 2, 3, 6, 10, 0, 1, 39, 61, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005550', '2019-01-19', '1730', 19, 23, 'Arsenal', 'Chelsea', 2, 0, 2, 0, 1018, 1019, 3.13, 3.64, 2.35, 1.73, 2.25, 13, 13, 5, 1, 5, 6, 13, 15, 0, 2, 36, 64, '00000000000001000000000000000000000000100000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005534', '2019-01-14', '2000', 19, 22, 'Man City', 'Wolves', 3, 0, 2, 0, 1009, 1031, 1.18, 7.70, 17.59, 1.45, 2.80, 24, 3, 9, 0, 12, 1, 6, 3, 1, 0, 76, 24, '00000000010000000000000000000000000000100000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005531', '2019-01-13', '1415', 19, 22, 'Everton', 'Bournemouth', 2, 0, 0, 0, 1017, 1063, 1.75, 4.04, 4.91, 1.67, 2.35, 15, 16, 3, 7, 5, 9, 17, 8, 5, 0, 51, 49, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005533', '2019-01-13', '1630', 19, 22, 'Tottenham', 'Man Utd', 0, 1, 0, 1, 1001, 1020, 2.14, 3.72, 3.53, 1.63, 2.44, 21, 13, 11, 8, 7, 4, 8, 8, 1, 2, 61, 39, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000001000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005532', '2019-01-12', '1230', 19, 22, 'West Ham', 'Arsenal', 1, 0, 0, 0, 1022, 1018, 3.63, 3.96, 2.03, 1.52, 2.66, 11, 11, 3, 2, 7, 3, 7, 10, 0, 2, 42, 58, '00000000000000000000000000000000000000000000000100', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005535', '2019-01-12', '1500', 19, 22, 'Leicester', 'Southampton', 1, 2, 0, 2, 1042, 1004, 1.91, 3.54, 4.60, 2.22, 1.74, 23, 8, 6, 3, 10, 3, 7, 9, 2, 3, 72, 28, '00000000000000000000000000000000000000000000000000', '00000000001000000000000000000000000000000000100000', '1');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005536', '2019-01-12', '1500', 19, 22, 'Crystal Palace', 'Watford', 1, 2, 1, 0, 1012, 1025, 2.30, 3.42, 3.38, 2.00, 1.91, 15, 16, 6, 2, 7, 7, 11, 11, 1, 4, 55, 45, '00000000000000000000000000000000000001000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005537', '2019-01-12', '1500', 19, 22, 'Cardiff', 'Huddersfield', 0, 0, 0, 0, 1039, 1064, 2.21, 3.20, 3.89, 2.59, 1.54, 3, 14, 0, 2, 3, 10, 12, 14, 3, 1, 39, 61, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005538', '2019-01-12', '1500', 19, 22, 'Burnley', 'Fulham', 2, 1, 2, 1, 1030, 1010, 2.45, 3.34, 3.18, 2.13, 1.79, 11, 12, 0, 4, 2, 6, 5, 9, 1, 2, 42, 58, '00000000000000000001001000000000000000000000000000', '01000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005539', '2019-01-12', '1500', 19, 22, 'Brighton', 'Liverpool', 0, 1, 0, 0, 1036, 1002, 10.78, 5.02, 1.35, 1.76, 2.16, 7, 10, 0, 3, 2, 7, 15, 5, 0, 0, 29, 71, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000001', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005540', '2019-01-12', '1730', 19, 22, 'Chelsea', 'Newcastle', 2, 1, 1, 1, 1019, 1016, 1.20, 6.82, 17.39, 1.66, 2.31, 10, 9, 6, 2, 8, 5, 6, 13, 1, 1, 66, 34, '00000000100000000000000000000000000000000000000000', '00000000000000000000000000000000000000010000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005526', '2019-01-03', '2000', 19, 21, 'Man City', 'Liverpool', 2, 1, 1, 0, 1009, 1002, 2.09, 3.85, 3.57, 1.65, 2.38, 9, 7, 4, 5, 2, 1, 12, 7, 4, 2, 50, 50, '00000000000000000000000000000000000000010000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005522', '2019-01-02', '1945', 19, 21, 'Bournemouth', 'Watford', 3, 3, 3, 3, 1063, 1025, 2.72, 3.51, 2.73, 1.72, 2.25, 25, 11, 12, 3, 4, 2, 9, 15, 1, 4, 56, 44, '00000000000000000000000000000000010010010000000000', '00000000000001000000000000100000000001000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005524', '2019-01-02', '1945', 19, 21, 'Chelsea', 'Southampton', 0, 0, 0, 0, 1019, 1004, 1.29, 5.86, 11.36, 1.57, 2.49, 17, 6, 6, 2, 7, 2, 8, 11, 1, 2, 72, 28, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005525', '2019-01-02', '1945', 19, 21, 'Huddersfield', 'Burnley', 1, 2, 1, 1, 1064, 1030, 2.23, 3.10, 4.02, 2.72, 1.50, 9, 16, 2, 8, 5, 2, 11, 9, 2, 4, 43, 57, '00000000000000000000000000000000100000000000000000', '00000000000000000000000000000000000000010000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005527', '2019-01-02', '2000', 19, 21, 'Newcastle', 'Man Utd', 0, 2, 0, 0, 1016, 1020, 5.91, 4.22, 1.60, 1.70, 2.25, 14, 16, 3, 7, 1, 2, 10, 9, 1, 2, 35, 65, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005528', '2019-01-02', '1945', 19, 21, 'West Ham', 'Brighton', 2, 2, 0, 0, 1022, 1036, 1.96, 3.59, 4.30, 1.96, 1.96, 13, 13, 6, 6, 1, 5, 9, 11, 0, 1, 54, 46, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005529', '2019-01-02', '1945', 19, 21, 'Wolves', 'Crystal Palace', 0, 2, 0, 0, 1031, 1012, 2.08, 3.26, 4.30, 2.44, 1.61, 9, 17, 1, 4, 3, 10, 9, 7, 4, 1, 52, 48, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005521', '2019-01-01', '1500', 19, 21, 'Arsenal', 'Fulham', 4, 1, 1, 0, 1018, 1010, 1.34, 5.58, 9.02, 1.41, 3.00, 16, 9, 9, 4, 8, 3, 7, 12, 0, 1, 60, 40, '00000000000000000000000010000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005523', '2019-01-01', '1730', 19, 21, 'Cardiff', 'Tottenham', 0, 3, 0, 3, 1039, 1001, 7.13, 4.41, 1.51, 1.71, 2.23, 6, 13, 3, 4, 5, 3, 6, 6, 1, 0, 27, 73, '00000000000000000000000000000000000000000000000000', '00100000000100000000000001000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005530', '2019-01-01', '1230', 19, 21, 'Everton', 'Leicester', 0, 1, 0, 0, 1017, 1042, 2.04, 3.54, 4.03, 2.01, 1.91, 17, 8, 2, 4, 6, 5, 5, 8, 3, 1, 60, 40, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005511', '2018-12-30', '1630', 19, 20, 'Man Utd', 'Bournemouth', 4, 1, 3, 1, 1020, 1063, 1.37, 5.48, 8.95, 1.51, 2.71, 11, 7, 8, 3, 4, 5, 10, 7, 2, 0, 64, 36, '00001000000000000000000000000000100000000000100000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005514', '2018-12-30', '1415', 19, 20, 'Southampton', 'Man City', 1, 3, 1, 3, 1004, 1009, 10.91, 5.97, 1.29, 1.51, 2.63, 5, 14, 4, 6, 3, 8, 11, 10, 2, 3, 24, 76, '00000000000000000000000000000000000010000000000000', '00000000010000000000000000000000000000000000D00000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005517', '2018-12-30', '1415', 19, 20, 'Burnley', 'West Ham', 2, 0, 2, 0, 1030, 1022, 3.85, 3.60, 2.07, 1.97, 1.95, 17, 11, 5, 4, 5, 5, 15, 11, 1, 4, 43, 57, '00000000000000100000000000000000010000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005519', '2018-12-30', '1200', 19, 20, 'Crystal Palace', 'Chelsea', 0, 1, 0, 0, 1012, 1019, 5.51, 4.05, 1.68, 1.90, 2.02, 4, 12, 0, 4, 3, 4, 11, 8, 0, 1, 34, 66, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005512', '2018-12-29', '1500', 19, 20, 'Watford', 'Newcastle', 1, 1, 0, 1, 1025, 1016, 1.79, 3.66, 5.32, 2.07, 1.85, 12, 8, 5, 2, 3, 6, 17, 16, 1, 2, 63, 37, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000001000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005513', '2018-12-29', '1500', 19, 20, 'Tottenham', 'Wolves', 1, 3, 1, 0, 1001, 1031, 1.50, 4.47, 7.59, 1.74, 2.22, 10, 11, 3, 4, 6, 7, 7, 7, 3, 2, 61, 39, '00000000000000000000010000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005515', '2018-12-29', '1500', 19, 20, 'Brighton', 'Everton', 1, 0, 0, 0, 1036, 1017, 3.37, 3.42, 2.33, 2.04, 1.88, 11, 13, 3, 4, 6, 6, 10, 11, 0, 2, 45, 55, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005516', '2018-12-29', '1730', 19, 20, 'Liverpool', 'Arsenal', 5, 1, 4, 1, 1002, 1018, 1.44, 5.02, 7.58, 1.53, 2.65, 15, 8, 10, 2, 5, 3, 8, 13, 1, 2, 48, 52, '00000000000001010000000000000001000000000000100000', '00000000001000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005518', '2018-12-29', '1500', 19, 20, 'Leicester', 'Cardiff', 0, 1, 0, 0, 1042, 1039, 1.55, 4.15, 7.41, 2.04, 1.88, 16, 12, 7, 3, 10, 4, 14, 16, 0, 2, 62, 38, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005520', '2018-12-29', '1500', 19, 20, 'Fulham', 'Huddersfield', 1, 0, 0, 0, 1010, 1064, 2.11, 3.26, 4.20, 2.45, 1.61, 14, 9, 5, 5, 4, 3, 12, 10, 3, 1, 44, 56, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005503', '2018-12-27', '1945', 19, 19, 'Southampton', 'West Ham', 1, 2, 0, 0, 1004, 1022, 2.21, 3.58, 3.49, 1.83, 2.10, 11, 16, 5, 5, 4, 6, 10, 3, 2, 0, 45, 55, '00000000000000000000000000000000000000000000000001', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005501', '2018-12-26', '1930', 19, 19, 'Watford', 'Chelsea', 1, 2, 1, 1, 1025, 1019, 5.55, 4.01, 1.69, 1.72, 2.24, 10, 10, 2, 4, 3, 4, 15, 5, 1, 0, 35, 65, '00000000000000000000000000000000000000000000100000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005502', '2018-12-26', '1500', 19, 19, 'Tottenham', 'Bournemouth', 5, 0, 3, 0, 1001, 1063, 1.36, 5.46, 9.24, 1.52, 2.67, 10, 14, 7, 4, 3, 4, 4, 8, 2, 1, 57, 43, '00000000000000010000001000000000001000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005504', '2018-12-26', '1500', 19, 19, 'Man Utd', 'Huddersfield', 3, 1, 1, 0, 1020, 1064, 1.28, 5.84, 12.33, 1.68, 2.27, 16, 10, 10, 2, 5, 3, 9, 13, 1, 1, 74, 26, '00000000000000000000000000010000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005505', '2018-12-26', '1500', 19, 19, 'Leicester', 'Man City', 2, 1, 1, 1, 1042, 1009, 9.82, 5.41, 1.36, 1.63, 2.42, 10, 11, 5, 4, 3, 7, 5, 8, 2, 2, 34, 66, '00000000000000000010000000000000000000000000000000', '00000000000001000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005506', '2018-12-26', '1500', 19, 19, 'Liverpool', 'Newcastle', 4, 0, 1, 0, 1002, 1016, 1.16, 8.35, 18.80, 1.50, 2.66, 16, 6, 8, 2, 10, 2, 7, 9, 0, 0, 75, 25, '00000000001000000000000000000000000000000000001000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005507', '2018-12-26', '1230', 19, 19, 'Fulham', 'Wolves', 1, 1, 0, 0, 1010, 1031, 3.14, 3.28, 2.53, 2.16, 1.78, 11, 14, 5, 5, 2, 0, 9, 6, 2, 1, 30, 70, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005508', '2018-12-26', '1500', 19, 19, 'Crystal Palace', 'Cardiff', 0, 0, 0, 0, 1012, 1039, 1.65, 3.87, 6.40, 2.07, 1.85, 31, 9, 5, 4, 12, 1, 9, 11, 0, 3, 63, 37, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005509', '2018-12-26', '1500', 19, 19, 'Burnley', 'Everton', 1, 5, 1, 3, 1030, 1017, 4.29, 3.49, 2.00, 2.03, 1.89, 11, 13, 4, 6, 5, 7, 11, 19, 2, 4, 49, 51, '00000000000000000000000000000000000010000000000000', '01000000000010000000010000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005510', '2018-12-26', '1715', 19, 19, 'Brighton', 'Arsenal', 1, 1, 1, 1, 1036, 1018, 5.15, 3.83, 1.77, 1.76, 2.18, 12, 7, 3, 4, 4, 9, 10, 4, 2, 1, 32, 68, '00000000000000000000000000000000001000000000000000', '00000010000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005496', '2018-12-23', '1600', 19, 18, 'Everton', 'Tottenham', 2, 6, 1, 3, 1017, 1001, 3.30, 3.51, 2.32, 1.78, 2.16, 10, 17, 3, 8, 2, 1, 13, 9, 0, 2, 42, 58, '00000000000000000000100000000000000000000000000000', '00000000000000000000000000100000001000000100000100', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005491', '2018-12-22', '1500', 19, 18, 'Huddersfield', 'Southampton', 1, 3, 0, 2, 1064, 1004, 2.95, 3.10, 2.80, 2.58, 1.56, 16, 13, 5, 6, 8, 2, 12, 9, 2, 3, 63, 37, '00000000000000000000000000000000000000000000000000', '00000000000000100000000000000000000000000100000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005492', '2018-12-22', '1500', 19, 18, 'West Ham', 'Watford', 0, 2, 0, 1, 1022, 1025, 2.34, 3.55, 3.23, 1.81, 2.12, 18, 11, 7, 5, 10, 4, 9, 11, 3, 2, 51, 49, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005493', '2018-12-22', '1500', 19, 18, 'Newcastle', 'Fulham', 0, 0, 0, 0, 1016, 1010, 2.04, 3.56, 4.03, 2.05, 1.88, 9, 4, 0, 2, 6, 0, 9, 12, 1, 2, 54, 46, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005494', '2018-12-22', '1500', 19, 18, 'Man City', 'Crystal Palace', 2, 3, 1, 2, 1009, 1012, 1.14, 9.07, 20.77, 1.37, 3.20, 19, 5, 5, 3, 13, 0, 7, 6, 0, 4, 78, 22, '00000000000000000000000000100000000000000000000000', '00000000000000000000000000000000101000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005497', '2018-12-22', '1500', 19, 18, 'Chelsea', 'Leicester', 0, 1, 0, 0, 1019, 1042, 1.34, 5.33, 11.30, 1.74, 2.22, 17, 8, 5, 3, 9, 5, 10, 9, 0, 2, 72, 28, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005498', '2018-12-22', '1730', 19, 18, 'Cardiff', 'Man Utd', 1, 5, 1, 3, 1039, 1020, 6.35, 4.15, 1.60, 1.79, 2.16, 9, 17, 3, 9, 4, 7, 13, 13, 2, 1, 26, 74, '00000000000000000000000000000000000001000000000000', '00100000000000000000000000001000000000001000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005499', '2018-12-22', '1500', 19, 18, 'Bournemouth', 'Brighton', 2, 0, 1, 0, 1063, 1036, 1.94, 3.57, 4.45, 2.02, 1.90, 14, 10, 3, 5, 6, 5, 8, 18, 2, 2, 57, 43, '00000000000000000000100000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005500', '2018-12-22', '1230', 19, 18, 'Arsenal', 'Burnley', 3, 1, 1, 0, 1018, 1030, 1.20, 6.98, 16.35, 1.46, 2.75, 10, 7, 6, 2, 1, 3, 10, 14, 2, 5, 60, 40, '00000000000001000000000000000000000000000000000100', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005495', '2018-12-21', '2000', 19, 18, 'Wolves', 'Liverpool', 0, 2, 0, 1, 1031, 1002, 6.83, 4.10, 1.58, 1.98, 1.94, 11, 15, 5, 6, 1, 10, 7, 3, 0, 0, 38, 62, '00000000000000000000000000000000000000000000000000', '00000000000000000100000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005484', '2018-12-16', '1330', 19, 17, 'Southampton', 'Arsenal', 3, 2, 2, 1, 1004, 1018, 4.30, 4.02, 1.85, 1.59, 2.50, 12, 13, 7, 4, 4, 5, 12, 10, 3, 1, 34, 66, '00000000000000000001000000000000000000000001000000', '00000000000000000000000000010000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005486', '2018-12-16', '1600', 19, 17, 'Liverpool', 'Man Utd', 3, 1, 1, 1, 1002, 1020, 1.58, 4.28, 6.47, 1.76, 2.18, 36, 6, 11, 2, 13, 2, 6, 14, 0, 2, 64, 36, '00000000000000000000000100000000000000000000000000', '00000000000000000000000000000000100000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005489', '2018-12-16', '1330', 19, 17, 'Brighton', 'Chelsea', 1, 2, 0, 2, 1036, 1019, 7.81, 4.62, 1.47, 1.85, 2.08, 6, 10, 2, 3, 4, 1, 14, 6, 2, 2, 42, 58, '00000000000000000000000000000000000000000000000000', '00000000000000001000000000000000100000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005481', '2018-12-15', '1230', 19, 17, 'Man City', 'Everton', 3, 1, 1, 0, 1009, 1017, 1.23, 6.97, 13.08, 1.38, 3.10, 13, 9, 5, 2, 6, 2, 7, 9, 1, 2, 67, 33, '00000000000000000000010000000000000000000000000001', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005482', '2018-12-15', '1500', 19, 17, 'Wolves', 'Bournemouth', 2, 0, 1, 0, 1031, 1063, 2.04, 3.50, 4.12, 1.93, 1.98, 9, 13, 3, 3, 5, 3, 15, 7, 1, 2, 38, 62, '00000000000100000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005483', '2018-12-15', '1500', 19, 17, 'Tottenham', 'Burnley', 1, 0, 0, 0, 1001, 1030, 1.18, 7.57, 17.96, 1.44, 2.88, 15, 4, 3, 0, 8, 3, 7, 8, 0, 2, 70, 30, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005485', '2018-12-15', '1500', 19, 17, 'Watford', 'Cardiff', 3, 2, 1, 0, 1025, 1039, 1.66, 3.85, 6.25, 2.04, 1.88, 17, 10, 8, 3, 5, 0, 7, 5, 0, 0, 72, 28, '00000000000000010000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005487', '2018-12-15', '1730', 19, 17, 'Fulham', 'West Ham', 0, 2, 0, 2, 1010, 1022, 2.98, 3.53, 2.50, 1.71, 2.27, 16, 6, 4, 3, 6, 4, 14, 10, 2, 1, 56, 44, '00000000000000000000000000000000000000000000000000', '00000000000000001000000000001000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005488', '2018-12-15', '1500', 19, 17, 'Crystal Palace', 'Leicester', 1, 0, 1, 0, 1012, 1042, 2.74, 3.16, 2.97, 2.41, 1.63, 8, 12, 1, 2, 4, 4, 10, 8, 2, 1, 43, 57, '00000000000000000000000000000000000000100000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005490', '2018-12-15', '1500', 19, 17, 'Huddersfield', 'Newcastle', 0, 1, 0, 0, 1064, 1016, 2.72, 3.00, 3.14, 2.76, 1.49, 15, 8, 5, 5, 10, 1, 5, 13, 1, 1, 74, 26, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005476', '2018-12-10', '2000', 19, 16, 'Everton', 'Watford', 2, 2, 1, 0, 1017, 1025, 1.77, 3.89, 5.03, 1.91, 2.01, 12, 15, 5, 3, 6, 6, 13, 13, 1, 1, 57, 43, '00000000000000100000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005473', '2018-12-09', '1600', 19, 16, 'Newcastle', 'Wolves', 1, 2, 1, 1, 1016, 1031, 2.93, 3.17, 2.76, 2.41, 1.63, 12, 13, 4, 6, 4, 6, 10, 17, 2, 5, 50, 50, '00000000000000000000001000000000000000000000000000', '00000000000000001000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005471', '2018-12-08', '1945', 19, 16, 'Leicester', 'Tottenham', 0, 2, 0, 1, 1042, 1001, 4.03, 3.70, 2.00, 1.85, 2.08, 10, 7, 3, 2, 6, 5, 12, 7, 3, 1, 42, 58, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005472', '2018-12-08', '1500', 19, 16, 'West Ham', 'Crystal Palace', 3, 2, 0, 1, 1022, 1012, 2.25, 3.44, 3.53, 1.98, 1.93, 13, 8, 6, 4, 5, 3, 10, 8, 1, 2, 49, 51, '00000000000000000000000000000000000000000000000100', '00000100000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005474', '2018-12-08', '1500', 19, 16, 'Man Utd', 'Fulham', 4, 1, 3, 0, 1020, 1010, 1.39, 5.27, 8.85, 1.58, 2.52, 20, 10, 11, 4, 10, 3, 11, 15, 1, 3, 63, 37, '00000000000010000000000000010000000000000100000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005475', '2018-12-08', '1500', 19, 16, 'Cardiff', 'Southampton', 1, 0, 0, 0, 1039, 1004, 3.02, 3.23, 2.65, 2.12, 1.81, 13, 12, 4, 1, 7, 7, 9, 10, 2, 2, 37, 63, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005477', '2018-12-08', '1730', 19, 16, 'Chelsea', 'Man City', 2, 0, 1, 0, 1019, 1009, 3.92, 3.70, 2.02, 1.76, 2.19, 8, 14, 5, 4, 1, 13, 12, 11, 2, 0, 39, 61, '00000000000000000000000000000000000000000000100000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005478', '2018-12-08', '1500', 19, 16, 'Burnley', 'Brighton', 1, 0, 1, 0, 1030, 1036, 2.87, 3.11, 2.88, 2.46, 1.61, 14, 14, 4, 1, 2, 7, 11, 11, 2, 0, 38, 62, '00000000000000000000000000000000000000010000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005479', '2018-12-08', '1230', 19, 16, 'Bournemouth', 'Liverpool', 0, 4, 0, 1, 1063, 1002, 5.88, 4.34, 1.61, 1.63, 2.41, 8, 10, 2, 4, 6, 6, 9, 11, 2, 1, 40, 60, '00000000000000000000000000000000000000000000000000', '00000000000000000000000010000000000000000000000100', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005480', '2018-12-08', '1500', 19, 16, 'Arsenal', 'Huddersfield', 1, 0, 0, 0, 1018, 1064, 1.29, 6.12, 11.89, 1.59, 2.50, 14, 6, 2, 0, 7, 1, 13, 20, 5, 4, 62, 38, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005461', '2018-12-05', '1945', 19, 15, 'Wolves', 'Chelsea', 2, 1, 0, 1, 1031, 1019, 4.99, 3.76, 1.80, 1.97, 1.95, 6, 17, 2, 3, 1, 5, 18, 10, 4, 4, 30, 70, '00000000000000000000000000000000000000000000000000', '00000000000000000100000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005464', '2018-12-05', '1945', 19, 15, 'Fulham', 'Leicester', 1, 1, 1, 0, 1010, 1042, 3.04, 3.43, 2.51, 1.97, 1.95, 25, 13, 7, 5, 10, 8, 12, 7, 0, 0, 46, 54, '00000000000000000000000000000000000000000100000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005467', '2018-12-05', '1945', 19, 15, 'Burnley', 'Liverpool', 1, 3, 0, 0, 1030, 1002, 11.42, 5.82, 1.29, 1.63, 2.36, 10, 18, 6, 12, 5, 9, 10, 3, 1, 0, 26, 74, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005468', '2018-12-05', '2000', 19, 15, 'Man Utd', 'Arsenal', 2, 2, 1, 1, 1020, 1018, 2.49, 3.58, 2.96, 1.61, 2.44, 10, 9, 7, 4, 4, 4, 13, 10, 3, 3, 45, 55, '00000000000000000000000000000100000000000000000000', '00000000000000000000000001000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005469', '2018-12-05', '1945', 19, 15, 'Everton', 'Newcastle', 1, 1, 1, 1, 1017, 1016, 1.55, 4.14, 7.37, 1.98, 1.94, 20, 9, 3, 5, 14, 2, 7, 18, 0, 5, 76, 24, '00000000000000000000000000000000000001000000000000', '00000000000000000010000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005470', '2018-12-05', '2000', 19, 15, 'Tottenham', 'Southampton', 3, 1, 1, 0, 1001, 1004, 1.38, 5.07, 9.69, 1.62, 2.43, 13, 18, 8, 5, 8, 6, 7, 5, 0, 0, 52, 48, '00000000100000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005462', '2018-12-04', '1945', 19, 15, 'West Ham', 'Cardiff', 3, 1, 0, 0, 1022, 1039, 1.68, 3.98, 5.68, 1.83, 2.10, 17, 8, 11, 4, 10, 4, 10, 10, 1, 2, 61, 39, '00000000000000000000000000000000000000000000000010', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005463', '2018-12-04', '2000', 19, 15, 'Watford', 'Man City', 1, 2, 0, 1, 1025, 1009, 9.58, 5.88, 1.32, 1.52, 2.60, 11, 15, 7, 7, 3, 11, 4, 8, 0, 1, 30, 70, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000010000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005465', '2018-12-04', '1945', 19, 15, 'Brighton', 'Crystal Palace', 3, 1, 3, 0, 1036, 1012, 2.84, 3.11, 2.89, 2.54, 1.57, 9, 18, 3, 5, 4, 5, 14, 12, 2, 3, 31, 69, '00000000000000000000000100000010000000000000100000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005466', '2018-12-04', '1945', 19, 15, 'Bournemouth', 'Huddersfield', 2, 1, 2, 1, 1063, 1064, 1.74, 3.82, 5.48, 2.01, 1.91, 6, 23, 2, 6, 4, 8, 14, 11, 4, 2, 32, 68, '00001000000000000000010000000000000000000000000000', '00000000000000000000000000000000000001000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005451', '2018-12-02', '1615', 19, 14, 'Liverpool', 'Everton', 1, 0, 0, 0, 1002, 1017, 1.40, 5.11, 8.66, 1.68, 2.32, 15, 9, 3, 3, 8, 1, 12, 7, 3, 2, 58, 42, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005458', '2018-12-02', '1200', 19, 14, 'Chelsea', 'Fulham', 2, 0, 1, 0, 1019, 1010, 1.19, 7.76, 15.29, 1.32, 3.50, 16, 9, 9, 4, 4, 6, 8, 17, 2, 1, 66, 34, '00010000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005460', '2018-12-02', '1405', 19, 14, 'Arsenal', 'Tottenham', 4, 2, 1, 2, 1018, 1001, 2.58, 3.72, 2.76, 1.59, 2.49, 22, 11, 7, 6, 8, 5, 15, 17, 3, 5, 59, 41, '00000000010000000000000000000000000000000000000000', '00000000000000000000000000000100010000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005452', '2018-12-01', '1730', 19, 14, 'Southampton', 'Man Utd', 2, 2, 2, 2, 1004, 1020, 4.39, 3.54, 1.96, 1.94, 1.98, 16, 11, 6, 5, 3, 5, 12, 13, 4, 4, 40, 60, '00000000000010000001000000000000000000000000000000', '00000000000000000000000000000000100000100000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005453', '2018-12-01', '1500', 19, 14, 'Newcastle', 'West Ham', 0, 3, 0, 1, 1016, 1022, 2.51, 3.33, 3.12, 2.13, 1.81, 16, 7, 4, 4, 7, 3, 10, 10, 3, 3, 59, 41, '00000000000000000000000000000000000000000000000000', '00000000001000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005454', '2018-12-01', '1500', 19, 14, 'Man City', 'Bournemouth', 3, 1, 1, 1, 1009, 1063, 1.12, 10.45, 23.99, 1.25, 4.20, 16, 4, 6, 1, 8, 4, 9, 3, 0, 0, 73, 27, '00000000000000010000000000000000000000000000000000', '00000000000000000000000000000000000000000001000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005455', '2018-12-01', '1500', 19, 14, 'Crystal Palace', 'Burnley', 2, 0, 1, 0, 1012, 1030, 1.56, 4.15, 7.19, 2.06, 1.86, 29, 4, 9, 0, 10, 2, 9, 10, 1, 1, 59, 41, '00000000000000010000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005456', '2018-12-01', '1500', 19, 14, 'Leicester', 'Watford', 2, 0, 2, 0, 1042, 1025, 2.29, 3.33, 3.55, 2.09, 1.84, 7, 8, 3, 0, 4, 8, 7, 6, 2, 1, 38, 62, '00000000000100000000001000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005457', '2018-12-01', '1500', 19, 14, 'Huddersfield', 'Brighton', 1, 2, 1, 1, 1064, 1036, 2.46, 3.05, 3.52, 2.83, 1.47, 7, 14, 2, 6, 2, 6, 10, 12, 0, 2, 32, 68, '10000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005459', '2018-11-30', '2000', 19, 14, 'Cardiff', 'Wolves', 2, 1, 0, 1, 1039, 1031, 3.76, 3.24, 2.25, 2.42, 1.63, 17, 15, 3, 4, 7, 6, 3, 12, 1, 2, 48, 52, '00000000000000000000000000000000000000000000000000', '00000000000000000100000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005447', '2018-11-26', '2030', 19, 13, 'Burnley', 'Newcastle', 1, 2, 1, 2, 1030, 1016, 2.90, 3.14, 2.81, 2.47, 1.60, 14, 17, 4, 3, 5, 5, 6, 11, 0, 1, 56, 44, '00000000000000000000000000000000000000010000000000', '00010000000000000000001000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005442', '2018-11-25', '1600', 19, 13, 'Wolves', 'Huddersfield', 0, 2, 0, 1, 1031, 1064, 1.56, 3.92, 7.88, 2.42, 1.63, 12, 14, 3, 6, 3, 5, 9, 8, 1, 2, 45, 55, '00000000000000000000000000000000000000000000000000', '00000100000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005449', '2018-11-25', '1330', 19, 13, 'Bournemouth', 'Arsenal', 1, 2, 1, 1, 1063, 1018, 3.63, 3.94, 2.04, 1.52, 2.63, 11, 20, 5, 4, 5, 8, 6, 9, 2, 1, 41, 59, '00000000000000000000000000000000000000000000100000', '00000000000000000000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005441', '2018-11-24', '1500', 19, 13, 'Man Utd', 'Crystal Palace', 0, 0, 0, 0, 1020, 1012, 1.43, 4.78, 8.55, 1.76, 2.18, 12, 13, 5, 2, 10, 3, 13, 12, 1, 2, 60, 40, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005443', '2018-11-24', '1500', 19, 13, 'Watford', 'Liverpool', 0, 3, 0, 0, 1025, 1002, 6.34, 4.41, 1.57, 1.69, 2.29, 5, 10, 1, 7, 5, 5, 12, 13, 0, 2, 36, 64, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005444', '2018-11-24', '1730', 19, 13, 'Tottenham', 'Chelsea', 3, 1, 2, 0, 1001, 1019, 2.90, 3.44, 2.61, 1.69, 2.29, 18, 13, 9, 2, 4, 4, 19, 12, 0, 3, 40, 60, '00000001000000010000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005445', '2018-11-24', '1500', 19, 13, 'West Ham', 'Man City', 0, 4, 0, 3, 1022, 1009, 12.24, 6.46, 1.25, 1.47, 2.74, 9, 9, 1, 6, 8, 1, 6, 3, 0, 0, 31, 69, '00000000000000000000000000000000000000000000000000', '00000000001000000010000000000000010000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005446', '2018-11-24', '1500', 19, 13, 'Fulham', 'Southampton', 3, 2, 2, 1, 1010, 1004, 2.71, 3.37, 2.84, 1.98, 1.94, 10, 19, 5, 8, 2, 5, 10, 6, 2, 3, 37, 63, '00000000000000000000000000000000100000000010000000', '00000000000000000100000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005448', '2018-11-24', '1500', 19, 13, 'Brighton', 'Leicester', 1, 1, 1, 0, 1036, 1042, 2.96, 3.21, 2.71, 2.43, 1.62, 14, 8, 3, 3, 6, 1, 10, 7, 3, 3, 55, 45, '00000000000000100000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005450', '2018-11-24', '1500', 19, 13, 'Everton', 'Cardiff', 1, 0, 0, 0, 1017, 1039, 1.41, 4.95, 8.97, 1.86, 2.06, 16, 7, 8, 1, 7, 3, 12, 13, 0, 3, 71, 29, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005433', '2018-11-11', '1630', 19, 12, 'Man City', 'Man Utd', 3, 1, 1, 0, 1009, 1020, 1.40, 5.29, 8.24, 1.50, 2.66, 17, 6, 5, 1, 5, 1, 12, 12, 1, 1, 65, 35, '00000000000100000000000000000000000000000000000100', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005434', '2018-11-11', '1200', 19, 12, 'Liverpool', 'Fulham', 2, 0, 1, 0, 1002, 1010, 1.11, 10.85, 24.57, 1.25, 4.20, 20, 8, 7, 3, 6, 3, 11, 9, 1, 1, 73, 27, '00000000000000000000000000000000000000001000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005437', '2018-11-11', '1415', 19, 12, 'Chelsea', 'Everton', 0, 0, 0, 0, 1019, 1017, 1.41, 5.19, 8.01, 1.54, 2.62, 14, 6, 4, 1, 5, 5, 7, 11, 4, 3, 69, 31, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005439', '2018-11-11', '1630', 19, 12, 'Arsenal', 'Wolves', 1, 1, 0, 1, 1018, 1031, 1.66, 4.17, 5.61, 1.68, 2.31, 10, 13, 3, 5, 11, 2, 9, 16, 2, 2, 72, 28, '00000000000000000000000000000000000000000000000000', '00000000000010000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005431', '2018-11-10', '1500', 19, 12, 'Leicester', 'Burnley', 0, 0, 0, 0, 1042, 1030, 1.52, 4.29, 7.68, 1.89, 2.03, 22, 6, 5, 1, 12, 1, 13, 10, 2, 0, 63, 37, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005432', '2018-11-10', '1500', 19, 12, 'Southampton', 'Watford', 1, 1, 1, 0, 1004, 1025, 2.56, 3.32, 3.06, 2.12, 1.81, 14, 12, 4, 6, 7, 6, 13, 13, 3, 2, 42, 58, '00000000000000000001000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005435', '2018-11-10', '1500', 19, 12, 'Newcastle', 'Bournemouth', 2, 1, 2, 1, 1016, 1063, 3.00, 3.37, 2.57, 2.05, 1.87, 18, 14, 6, 4, 7, 10, 9, 11, 2, 1, 39, 61, '00000010000000000000000000000000000000010000000000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005436', '2018-11-10', '1500', 19, 12, 'Huddersfield', 'West Ham', 1, 1, 1, 0, 1064, 1022, 3.48, 3.34, 2.31, 2.30, 1.68, 15, 12, 7, 6, 5, 6, 9, 8, 1, 1, 44, 56, '00000100000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005438', '2018-11-10', '1230', 19, 12, 'Cardiff', 'Brighton', 2, 1, 1, 1, 1039, 1036, 2.58, 3.13, 3.21, 2.56, 1.56, 20, 7, 6, 3, 4, 1, 7, 21, 2, 1, 60, 40, '00000000000000000000000000010000000000000000000000', '00000100000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005440', '2018-11-10', '1730', 19, 12, 'Crystal Palace', 'Tottenham', 0, 1, 0, 0, 1012, 1001, 4.54, 3.71, 1.88, 1.79, 2.15, 11, 11, 4, 2, 10, 6, 12, 9, 1, 1, 35, 65, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005426', '2018-11-05', '2000', 19, 11, 'Huddersfield', 'Fulham', 1, 0, 1, 0, 1064, 1010, 2.37, 3.40, 3.30, 2.13, 1.81, 10, 7, 2, 1, 5, 4, 11, 8, 1, 2, 45, 55, '00000000000000000000000000001000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005421', '2018-11-04', '1500', 19, 11, 'Man City', 'Southampton', 6, 1, 4, 1, 1009, 1004, 1.11, 10.41, 25.07, 1.30, 3.65, 18, 12, 8, 6, 4, 4, 14, 9, 1, 1, 67, 33, '00000100000100000100000000000000000000000000100000', '00000000000000000000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005427', '2018-11-04', '1600', 19, 11, 'Chelsea', 'Crystal Palace', 3, 1, 1, 0, 1019, 1012, 1.28, 6.04, 11.18, 1.51, 2.65, 15, 7, 6, 2, 4, 2, 6, 13, 0, 1, 74, 26, '00000000000000000000000000000001000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005422', '2018-11-03', '1945', 19, 11, 'Wolves', 'Tottenham', 2, 3, 0, 2, 1031, 1001, 3.35, 3.39, 2.35, 2.03, 1.89, 16, 10, 7, 8, 5, 1, 11, 8, 1, 2, 48, 52, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000100100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005423', '2018-11-03', '1500', 19, 11, 'West Ham', 'Burnley', 4, 2, 1, 1, 1022, 1030, 1.65, 3.96, 6.08, 1.99, 1.93, 22, 6, 10, 3, 10, 4, 7, 9, 1, 4, 63, 37, '00000000010000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005424', '2018-11-03', '1500', 19, 11, 'Newcastle', 'Watford', 1, 0, 0, 0, 1016, 1025, 2.74, 3.28, 2.87, 2.27, 1.70, 10, 16, 2, 1, 8, 9, 12, 11, 1, 5, 42, 58, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005425', '2018-11-03', '1500', 19, 11, 'Everton', 'Brighton', 3, 1, 1, 1, 1017, 1036, 1.60, 3.99, 6.78, 2.01, 1.91, 14, 5, 3, 3, 6, 4, 9, 17, 0, 1, 61, 39, '00000000000000000000000001000000000000000000000001', '00000000000000000000000000000000100000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005428', '2018-11-03', '1500', 19, 11, 'Cardiff', 'Leicester', 0, 1, 0, 0, 1039, 1042, 3.42, 3.20, 2.42, 2.11, 1.82, 11, 13, 2, 5, 6, 12, 13, 12, 2, 2, 40, 60, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005429', '2018-11-03', '1230', 19, 11, 'Bournemouth', 'Man Utd', 1, 2, 1, 1, 1063, 1020, 3.68, 3.71, 2.09, 1.70, 2.27, 18, 18, 7, 8, 9, 5, 12, 12, 4, 3, 49, 51, '00000000001000000000000000000000000000000000000000', '00000000000000000000000000000000001000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005430', '2018-11-03', '1730', 19, 11, 'Arsenal', 'Liverpool', 1, 1, 0, 0, 1018, 1002, 4.07, 3.99, 1.91, 1.54, 2.62, 12, 13, 4, 4, 5, 8, 7, 7, 1, 1, 62, 38, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005413', '2018-10-29', '2000', 19, 10, 'Tottenham', 'Man City', 0, 1, 0, 1, 1001, 1009, 4.94, 4.26, 1.71, 1.61, 2.44, 4, 13, 1, 6, 3, 6, 13, 13, 2, 2, 48, 52, '00000000000000000000000000000000000000000000000000', '00000100000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005414', '2018-10-28', '1600', 19, 10, 'Man Utd', 'Everton', 2, 1, 1, 0, 1020, 1017, 1.76, 3.93, 5.05, 1.83, 2.11, 14, 14, 10, 6, 8, 4, 15, 12, 2, 1, 54, 46, '00000000000000000000000000100000000000000000000010', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005418', '2018-10-28', '1330', 19, 10, 'Crystal Palace', 'Arsenal', 2, 2, 1, 0, 1012, 1018, 4.72, 4.20, 1.75, 1.61, 2.45, 16, 7, 3, 2, 6, 4, 10, 16, 1, 2, 42, 58, '00000000000000000000000000000000000000000000100000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005419', '2018-10-28', '1330', 19, 10, 'Burnley', 'Chelsea', 0, 4, 0, 1, 1030, 1019, 10.97, 5.15, 1.35, 1.78, 2.16, 7, 24, 1, 8, 4, 4, 14, 10, 4, 2, 30, 70, '00000000000000000000000000000000000000000000000000', '00000000000000000000010000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005411', '2018-10-27', '1500', 19, 10, 'Liverpool', 'Cardiff', 4, 1, 1, 0, 1002, 1039, 1.10, 11.53, 28.84, 1.30, 3.60, 19, 2, 7, 1, 8, 0, 6, 4, 0, 0, 80, 20, '00000000010000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005412', '2018-10-27', '1500', 19, 10, 'Watford', 'Huddersfield', 3, 0, 2, 0, 1025, 1064, 1.76, 3.60, 5.70, 2.34, 1.67, 12, 13, 6, 7, 3, 3, 9, 13, 1, 2, 48, 52, '00000000010000000010000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005415', '2018-10-27', '1500', 19, 10, 'Southampton', 'Newcastle', 0, 0, 0, 0, 1004, 1016, 2.14, 3.30, 4.00, 2.41, 1.63, 22, 6, 4, 0, 7, 2, 9, 12, 0, 1, 50, 50, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005416', '2018-10-27', '1730', 19, 10, 'Leicester', 'West Ham', 1, 1, 0, 1, 1042, 1022, 2.25, 3.38, 3.58, 2.00, 1.92, 21, 11, 7, 3, 8, 0, 17, 5, 1, 1, 64, 36, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005417', '2018-10-27', '1500', 19, 10, 'Brighton', 'Wolves', 1, 0, 0, 0, 1036, 1031, 3.26, 3.17, 2.53, 2.55, 1.56, 7, 25, 1, 7, 1, 10, 11, 8, 3, 0, 40, 60, '00000000000000000000000000000000000000000000000100', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005420', '2018-10-27', '1500', 19, 10, 'Fulham', 'Bournemouth', 0, 3, 0, 1, 1010, 1063, 3.03, 3.73, 2.38, 1.54, 2.61, 11, 12, 1, 5, 5, 5, 16, 3, 4, 1, 52, 48, '00000000000000000000000000000000000000000000000000', '00000000000001000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005410', '2018-10-22', '2000', 19, 9, 'Arsenal', 'Leicester', 3, 1, 1, 1, 1018, 1042, 1.55, 4.46, 6.60, 1.54, 2.61, 19, 8, 6, 2, 6, 4, 10, 10, 2, 2, 69, 31, '00000000000000000000000000000000000000000000100000', '00000000000000000000000000000010000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005405', '2018-10-21', '1600', 19, 9, 'Everton', 'Crystal Palace', 2, 0, 0, 0, 1017, 1012, 1.86, 3.68, 4.75, 2.07, 1.85, 20, 7, 4, 3, 10, 5, 13, 17, 2, 1, 60, 40, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005408', '2018-10-20', '1500', 19, 9, 'Cardiff', 'Fulham', 4, 2, 2, 2, 1039, 1010, 2.50, 3.42, 3.06, 1.85, 2.08, 22, 9, 5, 4, 4, 4, 15, 16, 3, 3, 40, 60, '00000000000000100001000000000000000000000000000000', '00000000001000000000000000000000010000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005409', '2018-10-20', '1500', 19, 9, 'Bournemouth', 'Southampton', 0, 0, 0, 0, 1063, 1004, 2.15, 3.52, 3.72, 1.83, 2.10, 10, 8, 2, 4, 6, 4, 10, 14, 1, 2, 58, 42, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005401', '2018-10-20', '1500', 19, 9, 'Wolves', 'Watford', 0, 2, 0, 2, 1031, 1025, 1.79, 3.63, 5.38, 2.08, 1.85, 10, 9, 1, 3, 8, 2, 23, 13, 3, 1, 45, 55, '00000000000000000000000000000000000000000000000000', '00000000000000000001100000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005402', '2018-10-20', '1500', 19, 9, 'West Ham', 'Tottenham', 0, 1, 0, 1, 1022, 1001, 4.08, 3.90, 1.93, 1.68, 2.32, 13, 10, 4, 2, 10, 6, 8, 9, 3, 0, 44, 56, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000001000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005403', '2018-10-20', '1500', 19, 9, 'Newcastle', 'Brighton', 0, 1, 0, 1, 1016, 1036, 2.21, 3.19, 3.96, 2.55, 1.56, 27, 8, 6, 2, 10, 2, 13, 17, 0, 2, 68, 32, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000001000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005404', '2018-10-20', '1500', 19, 9, 'Man City', 'Burnley', 5, 0, 1, 0, 1009, 1030, 1.07, 14.88, 33.74, 1.27, 3.90, 24, 5, 10, 0, 10, 1, 11, 5, 2, 2, 70, 30, '00000000000000001000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005406', '2018-10-20', '1730', 19, 9, 'Huddersfield', 'Liverpool', 0, 1, 0, 1, 1064, 1002, 11.61, 5.38, 1.33, 1.90, 2.02, 13, 11, 1, 2, 2, 4, 9, 6, 0, 2, 48, 52, '00000000000000000000000000000000000000000000000000', '00000000000000000000000100000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005407', '2018-10-20', '1230', 19, 9, 'Chelsea', 'Man Utd', 2, 2, 1, 0, 1019, 1020, 1.70, 3.93, 5.56, 1.81, 2.13, 21, 7, 6, 4, 5, 3, 9, 17, 2, 5, 62, 38, '00000000000000000000100000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005391', '2018-10-07', '1630', 19, 8, 'Liverpool', 'Man City', 0, 0, 0, 0, 1002, 1009, 2.82, 3.55, 2.61, 1.67, 2.33, 7, 6, 2, 2, 2, 6, 10, 10, 1, 3, 49, 51, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005393', '2018-10-07', '1415', 19, 8, 'Southampton', 'Chelsea', 0, 3, 0, 1, 1004, 1019, 6.85, 4.23, 1.56, 1.81, 2.13, 15, 21, 6, 6, 4, 12, 13, 11, 6, 0, 35, 65, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005397', '2018-10-07', '1200', 19, 8, 'Fulham', 'Arsenal', 1, 5, 1, 1, 1010, 1018, 5.02, 4.49, 1.67, 1.51, 2.64, 21, 9, 4, 7, 4, 2, 11, 12, 2, 0, 49, 51, '00000000000000000000000000000000000000000001000000', '00000000000000000000000000001000000000000000000010', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005392', '2018-10-06', '1500', 19, 8, 'Tottenham', 'Cardiff', 1, 0, 1, 0, 1001, 1039, 1.26, 6.30, 12.49, 1.50, 2.66, 19, 8, 7, 6, 6, 2, 7, 11, 3, 1, 76, 24, '00000001000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005394', '2018-10-06', '1730', 19, 8, 'Man Utd', 'Newcastle', 3, 2, 0, 2, 1020, 1016, 1.45, 4.56, 8.72, 1.99, 1.93, 18, 13, 10, 8, 10, 6, 16, 8, 2, 2, 73, 27, '00000000000000000000000000000000000000000000000000', '00000010010000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005395', '2018-10-06', '1500', 19, 8, 'Watford', 'Bournemouth', 0, 4, 0, 3, 1025, 1063, 2.14, 3.53, 3.69, 1.83, 2.10, 14, 10, 2, 7, 10, 7, 11, 9, 5, 1, 47, 53, '00000000000000000000000000000000000000000000000000', '00000000000001000000000000000000100000000000101000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005396', '2018-10-06', '1500', 19, 8, 'Leicester', 'Everton', 1, 2, 1, 1, 1042, 1017, 2.21, 3.45, 3.56, 1.95, 1.97, 8, 17, 2, 8, 2, 10, 10, 11, 4, 1, 51, 49, '00000000000000000000000000000000000000010000000000', '00000010000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005398', '2018-10-06', '1500', 19, 8, 'Crystal Palace', 'Wolves', 0, 1, 0, 0, 1012, 1031, 2.88, 3.22, 2.74, 2.22, 1.74, 11, 7, 4, 2, 6, 3, 11, 13, 3, 4, 67, 33, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005399', '2018-10-06', '1500', 19, 8, 'Burnley', 'Huddersfield', 1, 1, 1, 0, 1030, 1064, 2.34, 2.99, 3.88, 2.71, 1.51, 6, 19, 3, 2, 1, 10, 9, 11, 2, 2, 32, 68, '00000000000000000001000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005400', '2018-10-05', '2000', 19, 8, 'Brighton', 'West Ham', 1, 0, 1, 0, 1036, 1022, 2.73, 3.33, 2.84, 2.12, 1.81, 9, 16, 4, 4, 2, 9, 12, 8, 3, 2, 36, 64, '00000000000000000000000010000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005388', '2018-10-01', '2000', 19, 7, 'Bournemouth', 'Crystal Palace', 2, 1, 1, 0, 1063, 1012, 2.29, 3.50, 3.37, 1.80, 2.14, 11, 10, 5, 2, 3, 3, 9, 12, 3, 4, 44, 56, '00001000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005387', '2018-09-30', '1600', 19, 7, 'Cardiff', 'Burnley', 1, 2, 0, 0, 1039, 1030, 2.60, 3.10, 3.22, 2.51, 1.58, 19, 3, 5, 2, 10, 2, 11, 15, 1, 3, 54, 46, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005381', '2018-09-29', '1500', 19, 7, 'Huddersfield', 'Tottenham', 0, 2, 0, 2, 1064, 1001, 7.14, 4.15, 1.56, 1.93, 2.00, 9, 10, 5, 6, 3, 0, 17, 16, 2, 2, 53, 47, '00000000000000000000000000000000000000000000000000', '00000000000000000000000010000000010000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005382', '2018-09-29', '1230', 19, 7, 'West Ham', 'Man Utd', 3, 1, 2, 0, 1022, 1020, 4.15, 3.72, 1.96, 1.83, 2.09, 8, 9, 3, 4, 4, 9, 12, 12, 0, 1, 49, 51, '00001000000000000000000000000000000000000010000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005383', '2018-09-29', '1500', 19, 7, 'Newcastle', 'Leicester', 0, 2, 0, 1, 1016, 1042, 2.82, 3.23, 2.82, 2.40, 1.63, 6, 12, 1, 5, 5, 9, 11, 5, 0, 0, 41, 59, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005384', '2018-09-29', '1500', 19, 7, 'Man City', 'Brighton', 2, 0, 1, 0, 1009, 1036, 1.09, 12.51, 30.39, 1.30, 3.70, 28, 4, 8, 1, 10, 3, 4, 10, 0, 3, 80, 20, '00000000000000000000000000001000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005385', '2018-09-29', '1500', 19, 7, 'Wolves', 'Southampton', 2, 0, 0, 0, 1031, 1004, 1.93, 3.44, 4.73, 2.19, 1.76, 14, 17, 6, 6, 8, 6, 11, 7, 3, 1, 49, 51, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005386', '2018-09-29', '1500', 19, 7, 'Everton', 'Fulham', 3, 0, 0, 0, 1017, 1010, 1.70, 4.14, 5.20, 1.59, 2.49, 19, 6, 6, 0, 12, 1, 13, 13, 0, 3, 51, 49, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005389', '2018-09-29', '1500', 19, 7, 'Arsenal', 'Watford', 2, 0, 0, 0, 1018, 1025, 1.49, 4.83, 6.98, 1.44, 2.85, 9, 13, 2, 4, 6, 6, 11, 17, 2, 2, 63, 37, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005390', '2018-09-29', '1730', 19, 7, 'Chelsea', 'Liverpool', 1, 1, 1, 0, 1019, 1002, 2.79, 3.55, 2.65, 1.66, 2.36, 10, 13, 4, 6, 4, 4, 7, 9, 0, 2, 47, 53, '00000000000000000000000010000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005372', '2018-09-23', '1330', 19, 6, 'West Ham', 'Chelsea', 0, 0, 0, 0, 1022, 1019, 5.90, 4.51, 1.58, 1.59, 2.50, 6, 17, 1, 6, 1, 8, 11, 9, 2, 1, 28, 72, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005380', '2018-09-23', '1600', 19, 6, 'Arsenal', 'Everton', 2, 0, 0, 0, 1018, 1017, 1.47, 4.98, 7.11, 1.53, 2.58, 9, 9, 5, 6, 5, 9, 17, 12, 2, 1, 62, 38, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005371', '2018-09-22', '1500', 19, 6, 'Leicester', 'Huddersfield', 3, 1, 1, 1, 1042, 1064, 1.67, 3.71, 6.50, 2.36, 1.66, 18, 9, 8, 2, 3, 1, 10, 16, 2, 1, 62, 38, '00000000000000000010000000000000000000000000000000', '00001000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005373', '2018-09-22', '1500', 19, 6, 'Man Utd', 'Wolves', 1, 1, 1, 0, 1020, 1031, 1.63, 4.01, 6.25, 1.91, 2.01, 15, 11, 6, 8, 5, 4, 5, 17, 1, 1, 64, 36, '00000000000000000100000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005374', '2018-09-22', '1500', 19, 6, 'Liverpool', 'Southampton', 3, 0, 3, 0, 1002, 1004, 1.21, 6.96, 16.01, 1.52, 2.68, 12, 7, 4, 1, 5, 4, 7, 10, 0, 2, 61, 39, '00000000010000000000100000000000000000000000100000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005375', '2018-09-22', '1500', 19, 6, 'Crystal Palace', 'Newcastle', 0, 0, 0, 0, 1012, 1016, 2.15, 3.40, 3.84, 2.17, 1.77, 16, 6, 4, 3, 9, 5, 8, 11, 1, 1, 62, 38, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005376', '2018-09-22', '1230', 19, 6, 'Fulham', 'Watford', 1, 1, 0, 1, 1010, 1025, 2.58, 3.48, 2.80, 1.78, 2.17, 15, 11, 3, 6, 8, 8, 11, 9, 2, 1, 61, 39, '00000000000000000000000000000000000000000000000000', '01000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005377', '2018-09-22', '1500', 19, 6, 'Cardiff', 'Man City', 0, 5, 0, 3, 1039, 1009, 20.50, 8.02, 1.16, 1.42, 2.95, 2, 21, 2, 10, 1, 9, 6, 4, 1, 1, 22, 78, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000001001000000001000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005378', '2018-09-22', '1500', 19, 6, 'Burnley', 'Bournemouth', 4, 0, 2, 0, 1030, 1063, 3.00, 3.38, 2.57, 2.11, 1.82, 12, 19, 5, 5, 3, 8, 17, 6, 2, 0, 37, 63, '00000000000000000000000000000000000000101000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005379', '2018-09-22', '1730', 19, 6, 'Brighton', 'Tottenham', 1, 2, 0, 1, 1036, 1001, 5.50, 4.16, 1.67, 1.81, 2.12, 8, 16, 4, 7, 5, 7, 15, 9, 2, 1, 28, 72, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000100000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005364', '2018-09-17', '2000', 19, 5, 'Southampton', 'Brighton', 2, 2, 1, 0, 1004, 1036, 2.03, 3.32, 4.39, 2.44, 1.61, 14, 12, 5, 4, 1, 4, 10, 13, 2, 3, 51, 49, '00000000000000000000000000000000001000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005362', '2018-09-16', '1330', 19, 5, 'Wolves', 'Burnley', 1, 0, 0, 0, 1031, 1030, 1.74, 3.65, 5.80, 2.20, 1.75, 30, 7, 7, 2, 8, 2, 10, 9, 2, 4, 59, 41, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005368', '2018-09-16', '1600', 19, 5, 'Everton', 'West Ham', 1, 3, 1, 2, 1017, 1022, 2.17, 3.42, 3.74, 1.88, 2.04, 16, 9, 4, 4, 4, 2, 15, 12, 2, 5, 56, 44, '00000000000000000000000000000000000000000000100000', '00000000001000000000000000000010000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005361', '2018-09-15', '1500', 19, 5, 'Newcastle', 'Arsenal', 1, 2, 0, 0, 1016, 1018, 4.15, 3.85, 1.93, 1.73, 2.23, 4, 12, 2, 2, 10, 4, 13, 11, 0, 0, 36, 64, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000010', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005363', '2018-09-15', '1730', 19, 5, 'Watford', 'Man Utd', 1, 2, 0, 2, 1025, 1020, 4.10, 3.64, 2.00, 2.05, 1.88, 14, 9, 5, 6, 6, 8, 9, 11, 1, 3, 43, 57, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000001001000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005365', '2018-09-15', '1230', 19, 5, 'Tottenham', 'Liverpool', 1, 2, 0, 1, 1001, 1002, 3.22, 3.69, 2.28, 1.75, 2.21, 11, 17, 3, 10, 5, 4, 17, 16, 0, 0, 60, 40, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000100000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005366', '2018-09-15', '1500', 19, 5, 'Man City', 'Fulham', 3, 0, 2, 0, 1009, 1010, 1.11, 11.35, 23.00, 1.27, 3.90, 28, 9, 9, 3, 10, 4, 7, 7, 0, 0, 65, 35, '01000000000000000000100000000000000000000000001000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005367', '2018-09-15', '1500', 19, 5, 'Bournemouth', 'Leicester', 4, 2, 3, 0, 1063, 1042, 2.45, 3.50, 3.06, 1.90, 2.02, 10, 14, 5, 8, 4, 6, 13, 15, 3, 4, 47, 53, '00000000000000000010000000000000000010001000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005369', '2018-09-15', '1500', 19, 5, 'Chelsea', 'Cardiff', 4, 1, 2, 1, 1019, 1039, 1.18, 7.75, 19.00, 1.50, 2.73, 18, 6, 7, 2, 5, 4, 8, 10, 0, 0, 77, 23, '00000000000000000000000000000000000010000001000000', '00000000000000010000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005370', '2018-09-15', '1500', 19, 5, 'Huddersfield', 'Crystal Palace', 0, 1, 0, 1, 1064, 1012, 3.31, 3.21, 2.46, 2.50, 1.58, 15, 7, 2, 2, 5, 3, 11, 17, 1, 2, 58, 42, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000001000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005352', '2018-09-02', '1600', 19, 4, 'Watford', 'Tottenham', 2, 1, 0, 0, 1025, 1001, 5.62, 3.96, 1.69, 1.68, 2.31, 7, 11, 3, 2, 3, 10, 9, 8, 2, 1, 35, 65, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005358', '2018-09-02', '1330', 19, 4, 'Cardiff', 'Arsenal', 2, 3, 1, 1, 1039, 1018, 6.33, 4.46, 1.56, 1.67, 2.33, 14, 17, 3, 11, 3, 9, 12, 14, 3, 4, 28, 72, '00000000000000000000000000000000000000000000100000', '00000000000100000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005359', '2018-09-02', '1600', 19, 4, 'Burnley', 'Man Utd', 0, 2, 0, 2, 1030, 1020, 6.72, 4.02, 1.60, 2.06, 1.86, 9, 21, 2, 9, 2, 5, 7, 13, 2, 3, 46, 54, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000100000000000000001000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005351', '2018-09-01', '1500', 19, 4, 'West Ham', 'Wolves', 0, 1, 0, 0, 1022, 1031, 2.56, 3.46, 2.92, 1.91, 2.01, 13, 15, 3, 6, 4, 4, 10, 11, 2, 1, 48, 52, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005353', '2018-09-01', '1730', 19, 4, 'Man City', 'Newcastle', 2, 1, 1, 1, 1009, 1016, 1.12, 10.75, 27.76, 1.35, 3.30, 24, 3, 8, 2, 4, 0, 5, 13, 0, 0, 78, 22, '00000001000000000000000000000000000000000000000000', '00000000000000000000000000000100000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005354', '2018-09-01', '1230', 19, 4, 'Leicester', 'Liverpool', 1, 2, 0, 2, 1042, 1002, 7.93, 5.14, 1.43, 1.65, 2.38, 12, 10, 5, 4, 4, 4, 9, 12, 3, 2, 51, 49, '00000000000000000000000000000000000000000000000000', '00000000010000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005355', '2018-09-01', '1500', 19, 4, 'Crystal Palace', 'Southampton', 0, 2, 0, 0, 1012, 1004, 2.00, 3.49, 4.26, 2.20, 1.76, 20, 19, 6, 6, 7, 4, 11, 12, 1, 1, 51, 49, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000001000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005356', '2018-09-01', '1500', 19, 4, 'Everton', 'Huddersfield', 1, 1, 1, 1, 1017, 1064, 1.51, 4.25, 8.06, 2.14, 1.79, 11, 9, 1, 6, 4, 3, 13, 14, 3, 3, 58, 42, '00000000000000000000000000000000000100000000000000', '00000000000000000000000000000000010000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005357', '2018-09-01', '1500', 19, 4, 'Chelsea', 'Bournemouth', 2, 0, 0, 0, 1019, 1063, 1.30, 6.20, 10.66, 1.44, 2.85, 24, 8, 6, 1, 7, 6, 10, 7, 2, 2, 73, 27, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005360', '2018-09-01', '1500', 19, 4, 'Brighton', 'Fulham', 2, 2, 0, 1, 1036, 1010, 2.26, 3.42, 3.47, 2.01, 1.92, 15, 10, 5, 5, 7, 1, 12, 14, 3, 3, 41, 59, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000010000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005346', '2018-08-27', '2000', 19, 3, 'Man Utd', 'Tottenham', 0, 3, 0, 0, 1020, 1001, 2.50, 3.37, 3.07, 2.05, 1.88, 23, 9, 5, 5, 5, 2, 10, 16, 2, 3, 57, 43, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000001', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005341', '2018-08-26', '1600', 19, 3, 'Newcastle', 'Chelsea', 1, 2, 0, 0, 1016, 1019, 6.42, 4.16, 1.60, 1.82, 2.11, 6, 15, 2, 3, 4, 5, 16, 8, 3, 1, 19, 81, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005343', '2018-08-26', '1330', 19, 3, 'Watford', 'Crystal Palace', 2, 1, 0, 0, 1025, 1012, 2.57, 3.36, 2.98, 2.07, 1.85, 13, 9, 5, 3, 6, 3, 14, 11, 4, 2, 44, 56, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005345', '2018-08-26', '1600', 19, 3, 'Fulham', 'Burnley', 4, 2, 3, 2, 1010, 1030, 2.20, 3.30, 3.79, 2.18, 1.77, 25, 12, 12, 2, 6, 4, 11, 8, 2, 1, 64, 36, '00010000000000000000000000000000000101000000000000', '00000000010000000000000000000000000000001000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005342', '2018-08-25', '1230', 19, 3, 'Wolves', 'Man City', 1, 1, 0, 0, 1031, 1009, 12.53, 6.71, 1.26, 1.54, 2.62, 11, 18, 2, 6, 5, 9, 13, 8, 1, 2, 29, 71, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005344', '2018-08-25', '1500', 19, 3, 'Southampton', 'Leicester', 1, 2, 0, 0, 1004, 1042, 2.42, 3.35, 3.23, 2.34, 1.67, 11, 8, 5, 5, 10, 3, 13, 11, 3, 1, 52, 48, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005347', '2018-08-25', '1730', 19, 3, 'Liverpool', 'Brighton', 1, 0, 1, 0, 1002, 1036, 1.17, 8.69, 20.73, 1.37, 3.20, 22, 6, 8, 2, 8, 5, 8, 14, 1, 1, 70, 30, '00000000000000000000001000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005348', '2018-08-25', '1500', 19, 3, 'Huddersfield', 'Cardiff', 0, 0, 0, 0, 1064, 1039, 2.37, 3.06, 3.66, 2.76, 1.49, 5, 14, 1, 4, 7, 7, 8, 10, 0, 1, 58, 42, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005349', '2018-08-25', '1500', 19, 3, 'Arsenal', 'West Ham', 3, 1, 1, 1, 1018, 1022, 1.39, 5.41, 8.56, 1.53, 2.64, 17, 13, 10, 5, 7, 2, 16, 13, 1, 3, 61, 39, '00000000000000000000000000000100000000000000000000', '00000000000000000000000010000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005350', '2018-08-25', '1500', 19, 3, 'Bournemouth', 'Everton', 2, 2, 0, 0, 1063, 1017, 2.63, 3.62, 2.75, 1.72, 2.25, 17, 11, 5, 3, 6, 2, 12, 10, 0, 3, 50, 50, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005337', '2018-08-20', '2000', 19, 2, 'Crystal Palace', 'Liverpool', 0, 2, 0, 1, 1012, 1002, 7.34, 5.06, 1.45, 1.55, 2.59, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005334', '2018-08-19', '1330', 19, 2, 'Man City', 'Huddersfield', 6, 1, 3, 1, 1009, 1064, 1.09, 13.88, 32.43, 1.30, 3.55, 32, 5, 14, 1, 10, 3, 9, 4, 0, 2, 77, 23, '00000000000000000000000010000010001000000000000100', '00000000000000000000000000000000000000000010000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005339', '2018-08-19', '1330', 19, 2, 'Burnley', 'Watford', 1, 3, 1, 1, 1030, 1025, 2.40, 3.13, 3.50, 2.72, 1.50, 8, 9, 3, 6, 5, 2, 8, 19, 1, 2, 58, 42, '00000100000000000000000000000000000000000000000000', '00100000000000000000000000000000000000000000000100', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005340', '2018-08-19', '1600', 19, 2, 'Brighton', 'Man Utd', 3, 2, 3, 1, 1036, 1020, 5.39, 3.53, 1.81, 2.31, 1.68, 6, 9, 3, 3, 3, 5, 16, 13, 1, 1, 33, 67, '00000000000000000000000010100000000000000001000000', '00000000000000000000000000000000010000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005331', '2018-08-18', '1500', 19, 2, 'Leicester', 'Wolves', 2, 0, 2, 0, 1042, 1031, 2.08, 3.52, 3.84, 2.07, 1.85, 6, 11, 2, 3, 1, 9, 10, 8, 2, 1, 43, 57, '00000000000000000000000000001000000000000000100000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005332', '2018-08-18', '1500', 19, 2, 'West Ham', 'Bournemouth', 1, 2, 1, 0, 1022, 1063, 2.15, 3.54, 3.62, 1.83, 2.10, 11, 12, 5, 5, 6, 4, 14, 10, 6, 2, 61, 39, '00000000000000000000000000000000100000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005333', '2018-08-18', '1500', 19, 2, 'Tottenham', 'Fulham', 3, 1, 1, 0, 1001, 1010, 1.28, 6.39, 11.87, 1.52, 2.68, 25, 10, 11, 3, 5, 2, 9, 5, 0, 0, 60, 40, '00000000000000000000000000000000000000000010000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005335', '2018-08-18', '1230', 19, 2, 'Cardiff', 'Newcastle', 0, 0, 0, 0, 1039, 1016, 3.33, 3.18, 2.46, 2.61, 1.54, 12, 12, 1, 6, 5, 5, 14, 16, 2, 2, 51, 49, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005336', '2018-08-18', '1500', 19, 2, 'Everton', 'Southampton', 2, 1, 2, 0, 1017, 1004, 1.88, 3.48, 4.89, 2.16, 1.78, 14, 15, 7, 4, 2, 5, 8, 20, 0, 5, 58, 42, '00000000000000100000000000000010000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005338', '2018-08-18', '1730', 19, 2, 'Chelsea', 'Arsenal', 3, 2, 2, 2, 1019, 1018, 1.85, 3.99, 4.33, 1.61, 2.46, 24, 15, 11, 6, 5, 1, 12, 9, 0, 2, 62, 38, '00000000100000000001000000000000000000000000000000', '00000000000000000000000000000000000010001000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005321', '2018-08-12', '1600', 19, 1, 'Arsenal', 'Man City', 0, 2, 0, 1, 1018, 1009, 4.39, 4.09, 1.82, 1.53, 2.63, 9, 17, 3, 8, 2, 10, 11, 14, 2, 2, 42, 58, '00000000000000000000000000000000000000000000000000', '00000000000001000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005324', '2018-08-12', '1330', 19, 1, 'Liverpool', 'West Ham', 4, 0, 2, 0, 1002, 1022, 1.25, 6.95, 12.00, 1.51, 2.63, 18, 5, 8, 2, 5, 4, 14, 9, 1, 2, 65, 35, '00000000000000000010000000000000000000000000100000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005327', '2018-08-12', '1330', 19, 1, 'Southampton', 'Burnley', 0, 0, 0, 0, 1004, 1030, 2.02, 3.19, 4.65, 2.64, 1.53, 18, 16, 3, 6, 8, 5, 10, 9, 0, 1, 48, 52, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', 'S');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005322', '2018-08-11', '1500', 19, 1, 'Fulham', 'Crystal Palace', 0, 2, 0, 1, 1010, 1012, 2.53, 3.44, 2.97, 1.95, 1.97, 15, 10, 6, 9, 5, 5, 9, 11, 1, 2, 66, 34, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000001000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005323', '2018-08-11', '1500', 19, 1, 'Huddersfield', 'Chelsea', 0, 3, 0, 2, 1064, 1019, 6.50, 4.13, 1.60, 2.01, 1.91, 6, 13, 1, 4, 2, 5, 9, 8, 2, 1, 37, 63, '00000000000000000000000000000000000000000000000000', '00000000000000000000000000000000010000000000100000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005326', '2018-08-11', '1230', 19, 1, 'Newcastle', 'Tottenham', 1, 2, 1, 2, 1016, 1001, 3.98, 3.53, 2.05, 2.04, 1.88, 15, 15, 2, 5, 3, 5, 11, 12, 2, 2, 40, 60, '00000000001000000000000000000000000000000000000000', '00000001000000000100000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005328', '2018-08-11', '1500', 19, 1, 'Watford', 'Brighton', 2, 0, 1, 0, 1025, 1036, 2.48, 3.15, 3.32, 2.56, 1.56, 19, 6, 5, 0, 8, 2, 10, 16, 2, 2, 53, 47, '00000000000000000000000000000000001000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005329', '2018-08-11', '1730', 19, 1, 'Wolves', 'Everton', 2, 2, 1, 1, 1031, 1017, 2.39, 3.36, 3.26, 2.14, 1.79, 11, 6, 4, 5, 3, 6, 8, 7, 0, 1, 57, 43, '00000000000000000000000000000000000000000001000000', '00000000000000001000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005330', '2018-08-11', '1500', 19, 1, 'Bournemouth', 'Cardiff', 2, 0, 1, 0, 1063, 1039, 1.92, 3.61, 4.49, 2.01, 1.91, 12, 10, 4, 1, 7, 4, 11, 9, 1, 1, 63, 37, '00000000000000000000000100000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');
INSERT INTO `footballtest` (`codmeci`, `datameci`, `orameci`, `sezonul`, `etapa`, `txtechipa1`, `txtechipa2`, `scor1`, `scor2`, `scorp1`, `scorp2`, `codechipa1`, `codechipa2`, `cotaa`, `cotae`, `cotad`, `cotao`, `cotau`, `suth`, `suta`, `sutht`, `sutat`, `corh`, `cora`, `foulsh`, `foulsa`, `yellowh`, `yellowa`, `ballph`, `ballpa`, `mgolh`, `mgola`, `mgol`) VALUES ('0101005325', '2018-08-10', '2000', 19, 1, 'Man Utd', 'Leicester', 2, 1, 1, 0, 1020, 1042, 1.59, 3.88, 7.37, 2.12, 1.81, 8, 13, 6, 4, 2, 5, 11, 8, 2, 1, 46, 54, '00100000000000000000000000000000000000000000000000', '00000000000000000000000000000000000000000000000000', '0');

Open in new window

This question needs an answer!
Become an EE member today
7 DAY FREE TRIAL
Members can start a 7-Day Free trial then enjoy unlimited access to the platform.
View membership options
or
Learn why we charge membership fees
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.