mirrored 2 minutes ago
0
BlackSoi1initial commit 0c7e038
{
  "debit_card_specializing": "********************Database: debit_card_specializing********************\nCREATE TABLE \"customers\" (\ncustomerid bigint NOT NULL,\nsegment text NULL,\ncurrency text NULL,\n    PRIMARY KEY (customerid)\n);\n\nFirst 3 rows:\n customerid segment currency\n          3     SME      EUR\n          5     LAM      EUR\n          6     SME      EUR\n\n\nCREATE TABLE \"gasstations\" (\ngasstationid bigint NOT NULL,\nchainid bigint NULL,\ncountry text NULL,\nsegment text NULL,\n    PRIMARY KEY (gasstationid)\n);\n\nFirst 3 rows:\n gasstationid  chainid country         segment\n           44       13     CZE Value for money\n           45        6     CZE         Premium\n           46       23     CZE           Other\n\n\nCREATE TABLE \"products\" (\nproductid bigint NOT NULL,\ndescription text NULL,\n    PRIMARY KEY (productid)\n);\n\nFirst 3 rows:\n productid  description\n         1 Rucní zadání\n         2        Nafta\n         3      Special\n\n\nCREATE TABLE \"yearmonth\" (\ncustomerid bigint NULL,\ndate text NULL,\nconsumption real NULL\n);\n\nFirst 3 rows:\n customerid   date  consumption\n          5 201207       528.30\n          5 201302      1598.28\n          5 201303      1931.36\n\n\nCREATE TABLE \"transactions_1k\" (\ntransactionid bigint NOT NULL DEFAULT nextval('transactions_1k_transactionid_seq'::regclass),\ndate date NULL,\ntime text NULL,\ncustomerid bigint NULL,\ncardid bigint NULL,\ngasstationid bigint NULL,\nproductid bigint NULL,\namount bigint NULL,\nprice real NULL,\n    PRIMARY KEY (transactionid)\n);\n\nFirst 3 rows:\n transactionid       date     time  customerid  cardid  gasstationid  productid  amount  price\n             1 2012-08-24 09:41:00       31543  486621          3704          2      28 672.64\n             2 2012-08-24 10:03:00       46707  550134          3704          2      18 430.72\n             3 2012-08-24 10:03:00       46707  550134          3704         23       1 121.99\n\n********************Database: debit_card_specializing********************\n",
  "financial": "********************Database: financial********************\nCREATE TABLE \"loan\" (\nloan_id bigint NOT NULL DEFAULT '0'::bigint,\naccount_id bigint NULL,\ndate date NULL,\namount bigint NULL,\nduration bigint NULL,\npayments real NULL,\nstatus text NULL,\n    PRIMARY KEY (loan_id)\n);\n\nFirst 3 rows:\n loan_id  account_id       date  amount  duration  payments status\n    4959           2 1994-01-05   80952        24    3373.0      A\n    4961          19 1996-04-29   30276        12    2523.0      B\n    4962          25 1997-12-08   30276        12    2523.0      A\n\n\nCREATE TABLE \"client\" (\nclient_id bigint NOT NULL,\ngender text NULL,\nbirth_date date NULL,\ndistrict_id bigint NULL,\n    PRIMARY KEY (client_id),\n    FOREIGN KEY (district_id) REFERENCES district(district_id)\n);\n\nFirst 3 rows:\n client_id gender birth_date  district_id\n         1      F 1970-12-13           18\n         2      M 1945-02-04            1\n         3      F 1940-10-09            1\n\n\nCREATE TABLE \"district\" (\ndistrict_id bigint NOT NULL DEFAULT '0'::bigint,\na2 text NULL,\na3 text NULL,\na4 text NULL,\na5 text NULL,\na6 text NULL,\na7 text NULL,\na8 bigint NULL,\na9 bigint NULL,\na10 real NULL,\na11 bigint NULL,\na12 real NULL,\na13 real NULL,\na14 bigint NULL,\na15 bigint NULL,\na16 bigint NULL,\n    PRIMARY KEY (district_id)\n);\n\nFirst 3 rows:\n district_id          a2              a3      a4 a5 a6 a7  a8  a9   a10   a11  a12  a13  a14   a15   a16\n           1 Hl.m. Praha          Prague 1204953  0  0  0   1   1 100.0 12541  0.2 0.43  167 85677 99107\n           2     Benesov central Bohemia   88884 80 26  6   2   5  46.7  8507  1.6 1.85  132  2159  2674\n           3      Beroun central Bohemia   75232 55 26  4   1   5  41.7  8980  1.9 2.21  111  2824  2813\n\n\nCREATE TABLE \"trans\" (\ntrans_id bigint NOT NULL DEFAULT '0'::bigint,\naccount_id bigint NULL DEFAULT '0'::bigint,\ndate date NULL,\ntype text NULL,\noperation text NULL,\namount bigint NULL,\nbalance bigint NULL,\nk_symbol text NULL,\nbank text NULL,\naccount bigint NULL,\n    PRIMARY KEY (trans_id)\n);\n\nFirst 3 rows:\n trans_id  account_id       date   type     operation  amount  balance k_symbol bank    account\n        1           1 1995-03-24 PRIJEM         VKLAD    1000     1000     None None        NaN\n        5           1 1995-04-13 PRIJEM PREVOD Z UCTU    3679     4679     None   AB 41403269.0\n        6           1 1995-05-13 PRIJEM PREVOD Z UCTU    3679    20977     None   AB 41403269.0\n\n\nCREATE TABLE \"account\" (\naccount_id bigint NOT NULL DEFAULT '0'::bigint,\ndistrict_id bigint NULL DEFAULT '0'::bigint,\nfrequency text NULL,\ndate date NULL,\n    PRIMARY KEY (account_id),\n    FOREIGN KEY (district_id) REFERENCES district(district_id)\n);\n\nFirst 3 rows:\n account_id  district_id        frequency       date\n          1           18 POPLATEK MESICNE 1995-03-24\n          2            1 POPLATEK MESICNE 1993-02-26\n          3            5 POPLATEK MESICNE 1997-07-07\n\n\nCREATE TABLE \"card\" (\ncard_id bigint NOT NULL DEFAULT '0'::bigint,\ndisp_id bigint NULL,\ntype text NULL,\nissued date NULL,\n    PRIMARY KEY (card_id),\n    FOREIGN KEY (disp_id) REFERENCES disp(disp_id)\n);\n\nFirst 3 rows:\n card_id  disp_id    type     issued\n       1        9    gold 1998-10-16\n       2       19 classic 1998-03-13\n       3       41    gold 1995-09-03\n\n\nCREATE TABLE \"order\" (\norder_id bigint NOT NULL DEFAULT '0'::bigint,\naccount_id bigint NULL,\nbank_to text NULL,\naccount_to bigint NULL,\namount real NULL,\nk_symbol text NULL,\n    PRIMARY KEY (order_id)\n);\n\nFirst 3 rows:\n order_id  account_id bank_to  account_to  amount k_symbol\n    29401           1      YZ    87144583  2452.0     SIPO\n    29402           2      ST    89597016  3372.7     UVER\n    29403           2      QR    13943797  7266.0     SIPO\n\n\nCREATE TABLE \"disp\" (\ndisp_id bigint NOT NULL,\nclient_id bigint NULL,\naccount_id bigint NULL,\ntype text NULL,\n    PRIMARY KEY (disp_id)\n);\n\nFirst 3 rows:\n disp_id  client_id  account_id      type\n       1          1           1     OWNER\n       2          2           2     OWNER\n       3          3           2 DISPONENT\n\n********************Database: financial********************\n",
  "formula_1": "********************Database: formula_1********************\nCREATE TABLE \"circuits\" (\ncircuitid bigint NOT NULL DEFAULT nextval('circuits_circuitid_seq'::regclass),\ncircuitref text NULL DEFAULT ''::text,\nname text NULL DEFAULT ''::text,\nlocation text NULL,\ncountry text NULL,\nlat real NULL,\nlng real NULL,\nalt bigint NULL,\nurl text NULL DEFAULT ''::text,\n    PRIMARY KEY (circuitid)\n);\n\nFirst 3 rows:\n circuitid circuitref                           name     location  country      lat       lng  alt                                                         url\n         2     sepang   Sepang International Circuit Kuala Lumpur Malaysia  2.76083 101.73800 None   http://en.wikipedia.org/wiki/Sepang_International_Circuit\n         3    bahrain  Bahrain International Circuit       Sakhir  Bahrain 26.03250  50.51060 None  http://en.wikipedia.org/wiki/Bahrain_International_Circuit\n         4  catalunya Circuit de Barcelona-Catalunya     Montmeló    Spain 41.57000   2.26111 None http://en.wikipedia.org/wiki/Circuit_de_Barcelona-Catalunya\n\n\nCREATE TABLE \"status\" (\nstatusid bigint NOT NULL DEFAULT nextval('status_statusid_seq'::regclass),\nstatus text NULL DEFAULT ''::text,\n    PRIMARY KEY (statusid)\n);\n\nFirst 3 rows:\n statusid       status\n        1     Finished\n        2 Disqualified\n        3     Accident\n\n\nCREATE TABLE \"drivers\" (\ndriverid bigint NOT NULL DEFAULT nextval('drivers_driverid_seq'::regclass),\ndriverref text NULL DEFAULT ''::text,\nnumber bigint NULL,\ncode text NULL,\nforename text NULL DEFAULT ''::text,\nsurname text NULL DEFAULT ''::text,\ndob date NULL,\nnationality text NULL,\nurl text NULL DEFAULT ''::text,\n    PRIMARY KEY (driverid)\n);\n\nFirst 3 rows:\n driverid driverref  number code forename  surname        dob nationality                                         url\n        1  hamilton    44.0  HAM    Lewis Hamilton 1985-01-07     British http://en.wikipedia.org/wiki/Lewis_Hamilton\n        2  heidfeld     NaN  HEI     Nick Heidfeld 1977-05-10      German  http://en.wikipedia.org/wiki/Nick_Heidfeld\n        3   rosberg     6.0  ROS     Nico  Rosberg 1985-06-27      German   http://en.wikipedia.org/wiki/Nico_Rosberg\n\n\nCREATE TABLE \"driverstandings\" (\ndriverstandingsid bigint NOT NULL DEFAULT nextval('driverstandings_driverstandingsid_seq'::regclass),\nraceid bigint NULL DEFAULT '0'::bigint,\ndriverid bigint NULL DEFAULT '0'::bigint,\npoints real NULL DEFAULT '0'::real,\nposition bigint NULL,\npositiontext text NULL,\nwins bigint NULL DEFAULT '0'::bigint,\n    PRIMARY KEY (driverstandingsid)\n);\n\nFirst 3 rows:\n driverstandingsid  raceid  driverid  points  position  wins positiontext\n                 1      18         1    10.0         1     1            1\n                 2      18         2     8.0         2     0            2\n                 3      18         3     6.0         3     0            3\n\n\nCREATE TABLE \"races\" (\nraceid bigint NOT NULL DEFAULT nextval('races_raceid_seq'::regclass),\nyear bigint NULL DEFAULT '0'::bigint,\nround bigint NULL DEFAULT '0'::bigint,\ncircuitid bigint NULL DEFAULT '0'::bigint,\nname text NULL DEFAULT ''::text,\ndate date NULL,\ntime text NULL,\nurl text NULL,\n    PRIMARY KEY (raceid),\n    FOREIGN KEY (year) REFERENCES seasons(year)\n);\n\nFirst 3 rows:\n raceid  year  round  circuitid                 name       date     time                                                    url\n      2  2009      2          2 Malaysian Grand Prix 2009-04-05 09:00:00 http://en.wikipedia.org/wiki/2009_Malaysian_Grand_Prix\n      3  2009      3         17   Chinese Grand Prix 2009-04-19 07:00:00   http://en.wikipedia.org/wiki/2009_Chinese_Grand_Prix\n      4  2009      4          3   Bahrain Grand Prix 2009-04-26 12:00:00   http://en.wikipedia.org/wiki/2009_Bahrain_Grand_Prix\n\n\nCREATE TABLE \"constructors\" (\nconstructorid bigint NOT NULL DEFAULT nextval('constructors_constructorid_seq'::regclass),\nconstructorref text NULL DEFAULT ''::text,\nname text NULL DEFAULT ''::text,\nnationality text NULL,\nurl text NULL DEFAULT ''::text,\n    PRIMARY KEY (constructorid)\n);\n\nFirst 3 rows:\n constructorid constructorref       name nationality                                                          url\n             1        mclaren    McLaren     British                         http://en.wikipedia.org/wiki/McLaren\n             2     bmw_sauber BMW Sauber      German                      http://en.wikipedia.org/wiki/BMW_Sauber\n             3       williams   Williams     British http://en.wikipedia.org/wiki/Williams_Grand_Prix_Engineering\n\n\nCREATE TABLE \"constructorresults\" (\nconstructorresultsid bigint NOT NULL DEFAULT nextval('constructorresults_constructorresultsid_seq'::regclass),\nraceid bigint NULL DEFAULT '0'::bigint,\nconstructorid bigint NULL DEFAULT '0'::bigint,\npoints real NULL,\nstatus text NULL,\n    PRIMARY KEY (constructorresultsid)\n);\n\nFirst 3 rows:\n constructorresultsid  raceid  constructorid  points status\n                    1      18              1    14.0   None\n                    2      18              2     8.0   None\n                    3      18              3     9.0   None\n\n\nCREATE TABLE \"laptimes\" (\nraceid bigint NOT NULL,\ndriverid bigint NOT NULL,\nlap bigint NOT NULL,\nposition bigint NULL,\ntime text NULL,\nmilliseconds bigint NULL,\n    PRIMARY KEY (raceid, driverid, lap)\n);\n\nFirst 3 rows:\n raceid  driverid  lap  position     time  milliseconds\n      2         1    1        10 1:52.965        112965\n      2         1    2        10 1:41.865        101865\n      2         1    3        10 1:40.869        100869\n\n\nCREATE TABLE \"qualifying\" (\nqualifyid bigint NOT NULL DEFAULT nextval('qualifying_qualifyid_seq'::regclass),\nraceid bigint NULL DEFAULT '0'::bigint,\ndriverid bigint NULL DEFAULT '0'::bigint,\nconstructorid bigint NULL DEFAULT '0'::bigint,\nnumber bigint NULL DEFAULT '0'::bigint,\nposition bigint NULL,\nq1 text NULL,\nq2 text NULL,\nq3 text NULL,\n    PRIMARY KEY (qualifyid)\n);\n\nFirst 3 rows:\n qualifyid  raceid  driverid  constructorid  number  position       q1       q2       q3\n        23      19        13              6       2         1 1:35.347 1:34.412 1:35.748\n        24      19         8              6       1         2 1:35.645 1:34.188 1:36.230\n        25      19         5              1      23         3 1:35.227 1:34.759 1:36.613\n\n\nCREATE TABLE \"pitstops\" (\nraceid bigint NOT NULL,\ndriverid bigint NOT NULL,\nstop bigint NOT NULL,\nlap bigint NULL,\ntime text NULL,\nduration text NULL,\nmilliseconds bigint NULL,\n    PRIMARY KEY (raceid, driverid, stop)\n);\n\nFirst 3 rows:\n raceid  driverid  stop  lap     time duration  milliseconds\n    842         1     1   12 16:24:40   22.552         22552\n    842         1     2   24 16:45:48   22.611         22611\n    842         1     3   37 17:08:28   25.382         25382\n\n\nCREATE TABLE \"seasons\" (\nyear bigint NOT NULL DEFAULT '0'::bigint,\nurl text NULL DEFAULT ''::text,\n    PRIMARY KEY (year)\n);\n\nFirst 3 rows:\n year                                                  url\n 1950 http://en.wikipedia.org/wiki/1950_Formula_One_season\n 1951 http://en.wikipedia.org/wiki/1951_Formula_One_season\n 1952 http://en.wikipedia.org/wiki/1952_Formula_One_season\n\n\nCREATE TABLE \"constructorstandings\" (\nconstructorstandingsid bigint NOT NULL DEFAULT nextval('constructorstandings_constructorstandingsid_seq'::regclass),\nraceid bigint NULL DEFAULT '0'::bigint,\nconstructorid bigint NULL DEFAULT '0'::bigint,\npoints real NULL DEFAULT '0'::real,\nposition bigint NULL,\npositiontext text NULL,\nwins bigint NULL DEFAULT '0'::bigint,\n    PRIMARY KEY (constructorstandingsid)\n);\n\nFirst 3 rows:\n constructorstandingsid  raceid  constructorid  points  position positiontext  wins\n                      1      18              1    14.0         1            1     1\n                      2      18              2     8.0         3            3     0\n                      3      18              3     9.0         2            2     0\n\n\nCREATE TABLE \"results\" (\nresultid bigint NOT NULL DEFAULT nextval('results_resultid_seq'::regclass),\nraceid bigint NULL DEFAULT '0'::bigint,\ndriverid bigint NULL DEFAULT '0'::bigint,\nconstructorid bigint NULL DEFAULT '0'::bigint,\nnumber bigint NULL,\ngrid bigint NULL DEFAULT '0'::bigint,\nposition bigint NULL,\npositiontext text NULL DEFAULT ''::text,\npositionorder bigint NULL DEFAULT '0'::bigint,\npoints real NULL DEFAULT '0'::real,\nlaps bigint NULL DEFAULT '0'::bigint,\ntime text NULL,\nmilliseconds bigint NULL,\nfastestlap bigint NULL,\nrank bigint NULL DEFAULT '0'::bigint,\nfastestlaptime text NULL,\nfastestlapspeed text NULL,\nstatusid bigint NULL DEFAULT '0'::bigint,\n    PRIMARY KEY (resultid)\n);\n\nFirst 3 rows:\n resultid  raceid  driverid  constructorid  number  grid  position positiontext  positionorder  points  laps        time  milliseconds  fastestlap  rank fastestlaptime fastestlapspeed  statusid\n       23      19         8              6       1     2         1            1              1    10.0    56 1:31:18.555       5478555          37     2       1:35.405         209.158         1\n       24      19         9              2       4     4         2            2              2     8.0    56     +19.570       5498125          39     6       1:35.921         208.033         1\n       25      19         5              1      23     8         3            3              3     6.0    56     +38.450       5517005          19     7       1:35.922         208.031         1\n\n********************Database: formula_1********************\n",
  "california_schools": "********************Database: california_schools********************\nCREATE TABLE \"schools\" (\ncdscode text NULL,\nncesdist text NULL,\nncesschool text NULL,\nstatustype text NULL,\ncounty text NULL,\ndistrict text NULL,\nschool text NULL,\nstreet text NULL,\nstreetabr text NULL,\ncity text NULL,\nzip text NULL,\nstate text NULL,\nmailstreet text NULL,\nmailstrabr text NULL,\nmailcity text NULL,\nmailzip text NULL,\nmailstate text NULL,\nphone text NULL,\next text NULL,\nwebsite text NULL,\nopendate date NULL,\ncloseddate date NULL,\ncharter bigint NULL,\ncharternum text NULL,\nfundingtype text NULL,\ndoc text NULL,\ndoctype text NULL,\nsoc text NULL,\nsoctype text NULL,\nedopscode text NULL,\nedopsname text NULL,\neilcode text NULL,\neilname text NULL,\ngsoffered text NULL,\ngsserved text NULL,\nvirtual text NULL,\nmagnet bigint NULL,\nlatitude real NULL,\nlongitude real NULL,\nadmfname1 text NULL,\nadmlname1 text NULL,\nadmemail1 text NULL,\nadmfname2 text NULL,\nadmlname2 text NULL,\nadmemail2 text NULL,\nadmfname3 text NULL,\nadmlname3 text NULL,\nadmemail3 text NULL,\nlastupdate date NULL\n);\n\nFirst 3 rows:\n       cdscode ncesdist ncesschool statustype  county                           district                                 school                           street                     streetabr    city        zip state                       mailstreet                    mailstrabr mailcity    mailzip mailstate          phone  ext                  website   opendate closeddate  charter charternum     fundingtype doc                          doctype  soc               soctype edopscode   edopsname  eilcode                     eilname gsoffered gsserved virtual  magnet  latitude  longitude admfname1 admlname1                 admemail1 admfname2 admlname2 admemail2 admfname3 admlname3 admemail3 lastupdate\n01100170000000  0691051       None     Active Alameda Alameda County Office of Education                                   None           313 West Winton Avenue          313 West Winton Ave. Hayward 94544-1136    CA           313 West Winton Avenue          313 West Winton Ave.  Hayward 94544-1136        CA (510) 887-0152 None             www.acoe.org       None       None      NaN       None            None  00 County Office of Education (COE) None                  None      None        None     None                        None      None     None    None     NaN 37.658210 -122.09713   L Karen    Monroe         lkmonroe@acoe.org      None      None      None      None      None      None 2015-06-23\n01100170109835  0691051      10546     Closed Alameda Alameda County Office of Education                    FAME Public Charter 39899 Balentine Drive, Suite 335 39899 Balentine Dr., Ste. 335  Newark 94560-5359    CA 39899 Balentine Drive, Suite 335 39899 Balentine Dr., Ste. 335   Newark 94560-5359        CA           None None                     None 2005-08-29 2015-07-31      1.0       0728 Directly funded  00 County Office of Education (COE)   65 K-12 Schools (Public)      TRAD Traditional ELEMHIGH Elementary-High Combination      K-12     K-12       P     0.0 37.521435 -121.99391      None      None                      None      None      None      None      None      None      None 2015-09-01\n01100170112607  0691051      10947     Active Alameda Alameda County Office of Education Envision Academy for Arts & Technology              1515 Webster Street              1515 Webster St. Oakland 94612-3355    CA              1515 Webster Street              1515 Webster St.  Oakland      94612        CA (510) 596-8901 None www.envisionacademy.org/ 2006-08-28       None      1.0       0811 Directly funded  00 County Office of Education (COE)   66 High Schools (Public)      TRAD Traditional       HS                 High School      9-12     9-12       N     0.0 37.804520 -122.26815     Laura    Robell laura@envisionacademy.org      None      None      None      None      None      None 2015-06-18\n\n\nCREATE TABLE \"satscores\" (\ncds text NOT NULL,\nrtype text NULL,\nsname text NULL,\ndname text NULL,\ncname text NULL,\nenroll12 bigint NULL,\nnumtsttakr bigint NULL,\navgscrread bigint NULL,\navgscrmath bigint NULL,\navgscrwrite bigint NULL,\nnumge1500 bigint NULL,\n    PRIMARY KEY (cds),\n    FOREIGN KEY (cds) REFERENCES schools(cdscode)\n);\n\nFirst 3 rows:\n           cds rtype                        sname                             dname  cname  enroll12  numtsttakr  avgscrread  avgscrmath  avgscrwrite  numge1500\n03100330000000     D                         None Amador County Office of Education Amador        16           0         NaN         NaN          NaN        NaN\n03739810000000     D                         None             Amador County Unified Amador       317          97       525.0       514.0        503.0       60.0\n03739810330050     S North Star Independent Study             Amador County Unified Amador        17           0         NaN         NaN          NaN        NaN\n\n\nCREATE TABLE \"frpm\" (\ncdscode text NULL,\nAcademic Year text NULL,\nCounty Code text NULL,\nDistrict Code bigint NULL,\nSchool Code text NULL,\nCounty Name text NULL,\nDistrict Name text NULL,\nSchool Name text NULL,\nDistrict Type text NULL,\nSchool Type text NULL,\nEducational Option Type text NULL,\nNSLP Provision Status text NULL,\nCharter School (Y/N) bigint NULL,\nCharter School Number text NULL,\nCharter Funding Type text NULL,\nirc bigint NULL,\nLow Grade text NULL,\nHigh Grade text NULL,\nEnrollment (K-12) real NULL,\nFree Meal Count (K-12) real NULL,\nPercent (%) Eligible Free (K-12) real NULL,\nFRPM Count (K-12) real NULL,\nPercent (%) Eligible FRPM (K-12) real NULL,\nEnrollment (Ages 5-17) real NULL,\nFree Meal Count (Ages 5-17) real NULL,\nPercent (%) Eligible Free (Ages 5-17) real NULL,\nFRPM Count (Ages 5-17) real NULL,\nPercent (%) Eligible FRPM (Ages 5-17) real NULL,\n2013-14 CALPADS Fall 1 Certification Status bigint NULL,\n    FOREIGN KEY (cdscode) REFERENCES schools(cdscode)\n);\n\nFirst 3 rows:\n       cdscode  irc\n01100170109835    1\n01100170112607    1\n01100170118489    1\n\n********************Database: california_schools********************\n",
  "card_games": "********************Database: card_games********************\nCREATE TABLE \"legalities\" (\nid bigint NOT NULL DEFAULT nextval('legalities_id_seq'::regclass),\nformat text NULL,\nstatus text NULL,\nuuid text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id    format status                                 uuid\n  1 commander  Legal 5f8287b1-5bb6-5f4c-ad17-316a40d5bb0c\n  2      duel  Legal 5f8287b1-5bb6-5f4c-ad17-316a40d5bb0c\n  3    legacy  Legal 5f8287b1-5bb6-5f4c-ad17-316a40d5bb0c\n\n\nCREATE TABLE \"cards\" (\nid bigint NOT NULL DEFAULT nextval('cards_id_seq'::regclass),\nartist text NULL,\nasciiname text NULL,\navailability text NULL,\nbordercolor text NULL,\ncardkingdomfoilid text NULL,\ncardkingdomid text NULL,\ncoloridentity text NULL,\ncolorindicator text NULL,\ncolors text NULL,\nconvertedmanacost real NULL,\ndueldeck text NULL,\nedhrecrank bigint NULL,\nfaceconvertedmanacost real NULL,\nfacename text NULL,\nflavorname text NULL,\nflavortext text NULL,\nframeeffects text NULL,\nframeversion text NULL,\nhand text NULL,\nhasalternativedecklimit bigint NULL DEFAULT '0'::bigint,\nhascontentwarning bigint NULL DEFAULT '0'::bigint,\nhasfoil bigint NULL DEFAULT '0'::bigint,\nhasnonfoil bigint NULL DEFAULT '0'::bigint,\nisalternative bigint NULL DEFAULT '0'::bigint,\nisfullart bigint NULL DEFAULT '0'::bigint,\nisonlineonly bigint NULL DEFAULT '0'::bigint,\nisoversized bigint NULL DEFAULT '0'::bigint,\nispromo bigint NULL DEFAULT '0'::bigint,\nisreprint bigint NULL DEFAULT '0'::bigint,\nisreserved bigint NULL DEFAULT '0'::bigint,\nisstarter bigint NULL DEFAULT '0'::bigint,\nisstoryspotlight bigint NULL DEFAULT '0'::bigint,\nistextless bigint NULL DEFAULT '0'::bigint,\nistimeshifted bigint NULL DEFAULT '0'::bigint,\nkeywords text NULL,\nlayout text NULL,\nleadershipskills text NULL,\nlife text NULL,\nloyalty text NULL,\nmanacost text NULL,\nmcmid text NULL,\nmcmmetaid text NULL,\nmtgarenaid text NULL,\nmtgjsonv4id text NULL,\nmtgofoilid text NULL,\nmtgoid text NULL,\nmultiverseid text NULL,\nname text NULL,\nnumber text NULL,\noriginalreleasedate text NULL,\noriginaltext text NULL,\noriginaltype text NULL,\notherfaceids text NULL,\npower text NULL,\nprintings text NULL,\npromotypes text NULL,\npurchaseurls text NULL,\nrarity text NULL,\nscryfallid text NULL,\nscryfallillustrationid text NULL,\nscryfalloracleid text NULL,\nsetcode text NULL,\nside text NULL,\nsubtypes text NULL,\nsupertypes text NULL,\ntcgplayerproductid text NULL,\ntext text NULL,\ntoughness text NULL,\ntype text NULL,\ntypes text NULL,\nuuid text NULL,\nvariations text NULL,\nwatermark text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id       artist asciiname availability bordercolor cardkingdomfoilid cardkingdomid coloridentity colorindicator colors  convertedmanacost dueldeck  edhrecrank faceconvertedmanacost facename flavorname                                flavortext frameeffects frameversion hand  hasalternativedecklimit  hascontentwarning  hasfoil  hasnonfoil  isalternative  isfullart  isonlineonly  isoversized  ispromo  isreprint  isreserved  isstarter  isstoryspotlight  istextless  istimeshifted     keywords layout leadershipskills life loyalty  manacost mcmid mcmmetaid mtgarenaid                          mtgjsonv4id mtgofoilid mtgoid multiverseid              name number originalreleasedate                                                                                                                                                                      originaltext            originaltype otherfaceids power                                             printings promotypes                                                                                                                                                                         purchaseurls   rarity                           scryfallid               scryfallillustrationid                     scryfalloracleid setcode side     subtypes supertypes tcgplayerproductid toughness                    type    types                                 uuid                           variations watermark\n  1 Pete Venters      None   mtgo,paper       black              None        122719             W           None      W                7.0     None       15650                  None     None       None                                      None         None         2003 None                        0                  0        0           1              0          0             0            0        0          1           0          0                 0           0              0 First strike normal             None None    None {5}{W}{W} 16165       156       None ad41be73-582f-58ed-abd4-a88c1f616ac3      27501  27500       130550 Ancestor's Chosen      1                None First strike (This creature deals combat damage before creatures without first strike.)\\nWhen Ancestor's Chosen comes into play, you gain 1 life for each card in your graveyard. Creature - Human Cleric         None     4                                           10E,JUD,UMA       None {'cardKingdom': 'https://mtgjson.com/links/9fb51af0ad6f0736', 'cardmarket': 'https://mtgjson.com/links/ace8861194ee0b6a', 'tcgplayer': 'https://mtgjson.com/links/4843cea124a0d515'} uncommon 7a5cd03c-4227-4551-aa4b-7d119f0468b5 be2f7173-c8b7-4172-a388-9b2c6b3c16e5 fc2ccab7-cab1-4463-b73d-898070136d74     10E None Human,Cleric       None              15032         4 Creature — Human Cleric Creature 5f8287b1-5bb6-5f4c-ad17-316a40d5bb0c b7c19924-b4bf-56fc-aa73-f586e940bd42      None\n  2  Volkan Baǵa      None   mtgo,paper       black              None        122720             W           None      W                5.0     None       12702                  None     None       None Every tear shed is a drop of immortality.         None         2003 None                        0                  0        0           1              0          0             0            0        0          1           0          0                 0           0              0       Flying normal             None None    None    {4}{W} 16166       176       None 9eb2e54c-a12b-5e88-a9c0-d8c84c52d59c      26993  26992       129465    Angel of Mercy      2                None                                          Flying (This creature can't be blocked except by creatures with flying or reach.)\\nWhen Angel of Mercy comes into play, you gain 3 life.        Creature - Angel         None     3 10E,8ED,9ED,DDC,DVD,IMA,INV,JMP,MB1,P02,PS11,PSAL,S99       None {'cardKingdom': 'https://mtgjson.com/links/027095d094e58f5b', 'cardmarket': 'https://mtgjson.com/links/f6fb5098e1cd1b1e', 'tcgplayer': 'https://mtgjson.com/links/56c4b57293f350ef'} uncommon 8f7980d4-da43-4d6d-ad16-14b8a34ae91d e4d6c53f-e936-4be8-8b70-47c2be863b20 a2daaf32-dbfe-4618-892e-0da24f63a44a     10E None        Angel       None              15033         3        Creature — Angel Creature 57aaebc1-850c-503d-9f6e-bb8d00d8bf7c 8fd4e2eb-3eb4-50ea-856b-ef638fa47f8a      None\n  3 Justin Sweet      None   mtgo,paper       black              None        122725             W           None      W                4.0     None       11081                  None     None       None                                      None         None         2003 None                        0                  0        0           1              0          0             0            0        0          1           0          0                 0           0              0       Flying normal             None None    None    {3}{W} 16171       368       None c0de6fd8-367a-50fb-b2f4-2b8fa5aeb7d9      27473  27472       129470  Aven Cloudchaser      7                None                             Flying (This creature can't be blocked except by creatures with flying or reach.)\\nWhen Aven Cloudchaser comes into play, destroy target enchantment. Creature - Bird Soldier         None     2                                       10E,8ED,9ED,ODY       None {'cardKingdom': 'https://mtgjson.com/links/9246105d88032a9f', 'cardmarket': 'https://mtgjson.com/links/dcdfe48e6a8f9e1e', 'tcgplayer': 'https://mtgjson.com/links/3ce595aabe276f80'}   common 407110e9-19af-4ff5-97b2-c03225031a73 2eb663cd-020a-46d8-a6d9-bb63d4b5c848 48bda7dd-d023-41e8-8c28-e0cfda0d07ca     10E None Bird,Soldier       None              15045         2 Creature — Bird Soldier Creature 8ac972b5-9f6e-5cc8-91c3-b9a40a98232e 6adaf14d-43e3-521a-adf1-960c808e5b1a      None\n\n\nCREATE TABLE \"rulings\" (\nid bigint NOT NULL DEFAULT nextval('rulings_id_seq'::regclass),\ndate date NULL,\ntext text NULL,\nuuid text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id       date                                 uuid\n  1 2007-07-15 6d268c95-c176-5766-9a46-c14f739aba1c\n  2 2007-02-01 56f4935b-f6c5-59b9-88bf-9bcce20247ce\n  3 2007-07-15 56f4935b-f6c5-59b9-88bf-9bcce20247ce\n\n\nCREATE TABLE \"set_translations\" (\nid bigint NOT NULL DEFAULT nextval('set_translations_id_seq'::regclass),\nlanguage text NULL,\nsetcode text NULL,\ntranslation text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id            language setcode     translation\n  1  Chinese Simplified     10E         核心系列第十版\n  2 Chinese Traditional     10E         核心系列第十版\n  3              French     10E Dixième édition\n\n\nCREATE TABLE \"sets\" (\nid bigint NOT NULL DEFAULT nextval('sets_id_seq'::regclass),\nbasesetsize bigint NULL,\nblock text NULL,\nbooster text NULL,\ncode text NULL,\nisfoilonly bigint NULL DEFAULT '0'::bigint,\nisforeignonly bigint NULL DEFAULT '0'::bigint,\nisnonfoilonly bigint NULL DEFAULT '0'::bigint,\nisonlineonly bigint NULL DEFAULT '0'::bigint,\nispartialpreview bigint NULL DEFAULT '0'::bigint,\nkeyrunecode text NULL,\nmcmid bigint NULL,\nmcmidextras bigint NULL,\nmcmname text NULL,\nmtgocode text NULL,\nname text NULL,\nparentcode text NULL,\nreleasedate date NULL,\ntcgplayergroupid bigint NULL,\ntotalsetsize bigint NULL,\ntype text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  basesetsize    block code  isfoilonly  isforeignonly  isnonfoilonly  isonlineonly  ispartialpreview keyrunecode  mcmid  mcmidextras        mcmname mtgocode              name parentcode releasedate  tcgplayergroupid  totalsetsize    type\n  1          383 Core Set  10E           0              0              0             0                 0         10E   74.0          NaN  Tenth Edition      10E     Tenth Edition       None  2007-07-13                 1           508    core\n  2          302 Core Set  2ED           0              0              1             0                 0         2ED    NaN          NaN           None     None Unlimited Edition       None  1993-12-01               115           302    core\n  3          332     None  2XM           0              0              0             0                 0         2XM 3204.0       3209.0 Double Masters      2XM    Double Masters       None  2020-08-07              2655           384 masters\n\n\nCREATE TABLE \"foreign_data\" (\nid bigint NOT NULL DEFAULT nextval('foreign_data_id_seq'::regclass),\nflavortext text NULL,\nlanguage text NULL,\nmultiverseid bigint NULL,\nname text NULL,\ntext text NULL,\ntype text NULL,\nuuid text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id language  multiverseid                     name                                 uuid\n  1   German        148411 Ausgewählter der Ahnfrau 5f8287b1-5bb6-5f4c-ad17-316a40d5bb0c\n  2  Spanish        150317 Elegido de la Antepasada 5f8287b1-5bb6-5f4c-ad17-316a40d5bb0c\n  3   French        149934         Élu de l'Ancêtre 5f8287b1-5bb6-5f4c-ad17-316a40d5bb0c\n\n********************Database: card_games********************\n",
  "european_football_2": "********************Database: european_football_2********************\nCREATE TABLE \"team_attributes\" (\nid bigint NOT NULL DEFAULT nextval('team_attributes_id_seq'::regclass),\nteam_fifa_api_id bigint NULL,\nteam_api_id bigint NULL,\ndate text NULL,\nbuildupplayspeed bigint NULL,\nbuildupplayspeedclass text NULL,\nbuildupplaydribbling bigint NULL,\nbuildupplaydribblingclass text NULL,\nbuildupplaypassing bigint NULL,\nbuildupplaypassingclass text NULL,\nbuildupplaypositioningclass text NULL,\nchancecreationpassing bigint NULL,\nchancecreationpassingclass text NULL,\nchancecreationcrossing bigint NULL,\nchancecreationcrossingclass text NULL,\nchancecreationshooting bigint NULL,\nchancecreationshootingclass text NULL,\nchancecreationpositioningclass text NULL,\ndefencepressure bigint NULL,\ndefencepressureclass text NULL,\ndefenceaggression bigint NULL,\ndefenceaggressionclass text NULL,\ndefenceteamwidth bigint NULL,\ndefenceteamwidthclass text NULL,\ndefencedefenderlineclass text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  team_fifa_api_id  team_api_id                date  buildupplayspeed buildupplayspeedclass  buildupplaydribbling buildupplaydribblingclass  buildupplaypassing buildupplaypassingclass buildupplaypositioningclass  chancecreationpassing chancecreationpassingclass  chancecreationcrossing chancecreationcrossingclass  chancecreationshooting chancecreationshootingclass chancecreationpositioningclass  defencepressure defencepressureclass  defenceaggression defenceaggressionclass  defenceteamwidth defenceteamwidthclass defencedefenderlineclass\n  1               434         9930 2010-02-22 00:00:00                60              Balanced                   NaN                    Little                  50                   Mixed                   Organised                     60                     Normal                      65                      Normal                      55                      Normal                      Organised               50               Medium                 55                  Press                45                Normal                    Cover\n  2               434         9930 2014-09-19 00:00:00                52              Balanced                  48.0                    Normal                  56                   Mixed                   Organised                     54                     Normal                      63                      Normal                      64                      Normal                      Organised               47               Medium                 44                  Press                54                Normal                    Cover\n  3               434         9930 2015-09-10 00:00:00                47              Balanced                  41.0                    Normal                  54                   Mixed                   Organised                     54                     Normal                      63                      Normal                      64                      Normal                      Organised               47               Medium                 44                  Press                54                Normal                    Cover\n\n\nCREATE TABLE \"player\" (\nid bigint NOT NULL DEFAULT nextval('player_id_seq'::regclass),\nplayer_api_id bigint NULL,\nplayer_name text NULL,\nplayer_fifa_api_id bigint NULL,\nbirthday text NULL,\nheight bigint NULL,\nweight bigint NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  player_api_id        player_name  player_fifa_api_id            birthday  height  weight\n  1         505942 Aaron Appindangoye              218353 1992-02-29 00:00:00     182     187\n  2         155782    Aaron Cresswell              189615 1989-12-15 00:00:00     170     146\n  3         162549        Aaron Doran              186170 1991-05-13 00:00:00     170     163\n\n\nCREATE TABLE \"match\" (\nid bigint NOT NULL DEFAULT nextval('match_id_seq'::regclass),\ncountry_id bigint NULL,\nleague_id bigint NULL,\nseason text NULL,\nstage bigint NULL,\ndate text NULL,\nmatch_api_id bigint NULL,\nhome_team_api_id bigint NULL,\naway_team_api_id bigint NULL,\nhome_team_goal bigint NULL,\naway_team_goal bigint NULL,\ngoal text NULL,\nshoton text NULL,\nshotoff text NULL,\nfoulcommit text NULL,\ncard text NULL,\ncross text NULL,\ncorner text NULL,\npossession text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  country_id  league_id    season  stage                date  match_api_id  home_team_api_id  away_team_api_id  home_team_goal  away_team_goal\n  1           1          1 2008/2009      1 2008-08-17 00:00:00        492473              9987              9993               1               1\n  2           1          1 2008/2009      1 2008-08-16 00:00:00        492474             10000              9994               0               0\n  3           1          1 2008/2009      1 2008-08-16 00:00:00        492475              9984              8635               0               3\n\n\nCREATE TABLE \"league\" (\nid bigint NOT NULL DEFAULT nextval('league_id_seq'::regclass),\ncountry_id bigint NULL,\nname text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n  id  country_id                   name\n   1           1 Belgium Jupiler League\n1729        1729 England Premier League\n4769        4769         France Ligue 1\n\n\nCREATE TABLE \"country\" (\nid bigint NOT NULL DEFAULT nextval('country_id_seq'::regclass),\nname text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n  id    name\n   1 Belgium\n1729 England\n4769  France\n\n\nCREATE TABLE \"player_attributes\" (\nid bigint NOT NULL DEFAULT nextval('player_attributes_id_seq'::regclass),\nplayer_fifa_api_id bigint NULL,\nplayer_api_id bigint NULL,\ndate text NULL,\noverall_rating bigint NULL,\npotential bigint NULL,\npreferred_foot text NULL,\nattacking_work_rate text NULL,\ndefensive_work_rate text NULL,\ncrossing bigint NULL,\nfinishing bigint NULL,\nheading_accuracy bigint NULL,\nshort_passing bigint NULL,\nvolleys bigint NULL,\ndribbling bigint NULL,\ncurve bigint NULL,\nfree_kick_accuracy bigint NULL,\nlong_passing bigint NULL,\nball_control bigint NULL,\nacceleration bigint NULL,\nsprint_speed bigint NULL,\nagility bigint NULL,\nreactions bigint NULL,\nbalance bigint NULL,\nshot_power bigint NULL,\njumping bigint NULL,\nstamina bigint NULL,\nstrength bigint NULL,\nlong_shots bigint NULL,\naggression bigint NULL,\ninterceptions bigint NULL,\npositioning bigint NULL,\nvision bigint NULL,\npenalties bigint NULL,\nmarking bigint NULL,\nstanding_tackle bigint NULL,\nsliding_tackle bigint NULL,\ngk_diving bigint NULL,\ngk_handling bigint NULL,\ngk_kicking bigint NULL,\ngk_positioning bigint NULL,\ngk_reflexes bigint NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  player_fifa_api_id  player_api_id                date  overall_rating  potential preferred_foot attacking_work_rate defensive_work_rate  crossing  finishing  heading_accuracy  short_passing  volleys  dribbling  curve  free_kick_accuracy  long_passing  ball_control  acceleration  sprint_speed  agility  reactions  balance  shot_power  jumping  stamina  strength  long_shots  aggression  interceptions  positioning  vision  penalties  marking  standing_tackle  sliding_tackle  gk_diving  gk_handling  gk_kicking  gk_positioning  gk_reflexes\n  1              218353         505942 2016-02-18 00:00:00              67         71          right              medium              medium        49         44                71             61       44         51     45                  39            64            49            60            64       59         47       65          55       58       54        76          35          71             70           45      54         48       65               69              69          6           11          10               8            8\n  2              218353         505942 2015-11-19 00:00:00              67         71          right              medium              medium        49         44                71             61       44         51     45                  39            64            49            60            64       59         47       65          55       58       54        76          35          71             70           45      54         48       65               69              69          6           11          10               8            8\n  3              218353         505942 2015-09-21 00:00:00              62         66          right              medium              medium        49         44                71             61       44         51     45                  39            64            49            60            64       59         47       65          55       58       54        76          35          63             41           45      54         48       65               66              69          6           11          10               8            8\n\n\nCREATE TABLE \"team\" (\nid bigint NOT NULL DEFAULT nextval('team_id_seq'::regclass),\nteam_api_id bigint NULL,\nteam_fifa_api_id bigint NULL,\nteam_long_name text NULL,\nteam_short_name text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  team_api_id  team_fifa_api_id   team_long_name team_short_name\n  1         9987               673         KRC Genk             GEN\n  2         9993               675     Beerschot AC             BAC\n  3        10000             15005 SV Zulte-Waregem             ZUL\n\n********************Database: european_football_2********************\n",
  "thrombosis_prediction": "********************Database: thrombosis_prediction********************\nCREATE TABLE \"laboratory\" (\nid bigint NULL DEFAULT '0'::bigint,\ndate date NULL,\ngot bigint NULL,\ngpt bigint NULL,\nldh bigint NULL,\nalp bigint NULL,\ntp real NULL,\nalb real NULL,\nua real NULL,\nun bigint NULL,\ncre real NULL,\nT-BIL real NULL,\nT-CHO bigint NULL,\ntg bigint NULL,\ncpk bigint NULL,\nglu bigint NULL,\nwbc real NULL,\nrbc real NULL,\nhgb real NULL,\nhct real NULL,\nplt bigint NULL,\npt real NULL,\naptt bigint NULL,\nfg real NULL,\nU-PRO text NULL,\nigg bigint NULL,\niga bigint NULL,\nigm bigint NULL,\ncrp text NULL,\nra text NULL,\nrf text NULL,\nc3 bigint NULL,\nc4 bigint NULL,\nrnp text NULL,\nsm text NULL,\nsc170 text NULL,\nssa text NULL,\nssb text NULL,\ncentromea text NULL,\ndna text NULL,\nDNA-II bigint NULL\n);\n\nFirst 3 rows:\n   id       date  got  gpt  ldh  alp  tp  alb  ua  un  cre   tg  cpk  glu  wbc  rbc  hgb  hct  plt   pt aptt   fg   igg   iga   igm crp   ra   rf   c3   c4  rnp   sm sc170  ssa  ssb centromea  dna\n27654 1991-09-11   34   36  567  166 4.5  3.3 3.8  29  0.8 None  9.0  NaN  5.0  2.6  6.4 20.3  227 None None None 339.0 145.0  46.0 0.6 None None None None None None  None None None      None None\n27654 1991-09-17   29   31  579  154 5.1  3.4 4.2  36  0.8 None  NaN  NaN 10.4  2.9  6.7 21.6  242 None None None 771.0 188.0 132.0 0.6 None None None None None None  None None None      None None\n27654 1991-09-19   26   22  684  138 5.5  3.6 4.9  34  0.9 None  NaN 88.0 10.5  3.4  7.9 24.7  233 None None None   NaN   NaN   NaN 2.7 None None None None None None  None None None      None None\n\n\nCREATE TABLE \"patient\" (\nid bigint NOT NULL DEFAULT '0'::bigint,\nsex text NULL,\nbirthday date NULL,\ndescription date NULL,\nFirst Date date NULL,\nadmission text NULL,\ndiagnosis text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n   id sex   birthday description admission diagnosis\n 2110   F 1934-02-13  1994-02-14         +  RA susp.\n11408   F 1937-05-02  1996-12-01         +       PSS\n12052   F 1956-04-14  1991-08-13         +       SLE\n\n\nCREATE TABLE \"examination\" (\nid bigint NULL,\nExamination Date date NULL,\naCL IgG real NULL,\naCL IgM real NULL,\nana bigint NULL,\nANA Pattern text NULL,\naCL IgA bigint NULL,\ndiagnosis text NULL,\nkct text NULL,\nrvvt text NULL,\nlac text NULL,\nsymptoms text NULL,\nthrombosis bigint NULL\n);\n\nFirst 3 rows:\n    id  ana diagnosis  kct rvvt  lac symptoms  thrombosis\n 14872  256 MCTD, AMI None None    -      AMI           1\n 48473  256       SLE    -    -    -     None           0\n102490    0       PSS None None None     None           0\n\n********************Database: thrombosis_prediction********************\n",
  "toxicology": "********************Database: toxicology********************\nCREATE TABLE \"bond\" (\nbond_id text NOT NULL,\nmolecule_id text NULL,\nbond_type text NULL,\n    PRIMARY KEY (bond_id),\n    FOREIGN KEY (molecule_id) REFERENCES molecule(molecule_id)\n);\n\nFirst 3 rows:\n  bond_id molecule_id bond_type\nTR000_1_2       TR000         -\nTR000_2_3       TR000         -\nTR000_2_4       TR000         -\n\n\nCREATE TABLE \"molecule\" (\nmolecule_id text NOT NULL,\nlabel text NULL,\n    PRIMARY KEY (molecule_id)\n);\n\nFirst 3 rows:\nmolecule_id label\n      TR000     +\n      TR001     +\n      TR002     -\n\n\nCREATE TABLE \"atom\" (\natom_id text NOT NULL,\nmolecule_id text NULL,\nelement text NULL,\n    PRIMARY KEY (atom_id),\n    FOREIGN KEY (molecule_id) REFERENCES molecule(molecule_id)\n);\n\nFirst 3 rows:\natom_id molecule_id element\nTR000_1       TR000      cl\nTR000_2       TR000       c\nTR000_3       TR000      cl\n\n\nCREATE TABLE \"connected\" (\natom_id text NOT NULL,\natom_id2 text NOT NULL,\nbond_id text NULL,\n    PRIMARY KEY (atom_id, atom_id2)\n);\n\nFirst 3 rows:\natom_id atom_id2   bond_id\nTR000_1  TR000_2 TR000_1_2\nTR000_2  TR000_1 TR000_1_2\nTR000_2  TR000_3 TR000_2_3\n\n********************Database: toxicology********************\n",
  "student_club": "********************Database: student_club********************\nCREATE TABLE \"income\" (\nincome_id text NOT NULL,\ndate_received text NULL,\namount bigint NULL,\nsource text NULL,\nnotes text NULL,\nlink_to_member text NULL,\n    PRIMARY KEY (income_id),\n    FOREIGN KEY (link_to_member) REFERENCES member(member_id)\n);\n\nFirst 3 rows:\n        income_id date_received  amount source notes    link_to_member\nrec0s9ZrO15zhzUeE    2019-10-17      50   Dues  None reccW7q1KkhSKZsea\nrec7f5XMQZexgtQJo    2019-09-04      50   Dues  None recTjHY5xXhvkCdVT\nrec8BUJa8GXUjiglg    2019-10-08      50   Dues  None recUdRhbhcEO1Hk5r\n\n\nCREATE TABLE \"budget\" (\nbudget_id text NOT NULL,\ncategory text NULL,\nspent real NULL,\nremaining real NULL,\namount bigint NULL,\nevent_status text NULL,\nlink_to_event text NULL,\n    PRIMARY KEY (budget_id),\n    FOREIGN KEY (link_to_event) REFERENCES event(event_id)\n);\n\nFirst 3 rows:\n        budget_id      category  spent  remaining  amount event_status     link_to_event\nrec0QmEc3cSQFQ6V2 Advertisement  67.81       7.19      75       Closed recI43CzsZ0Q625ma\nrec1bG6HSft7XIvTP          Food 121.14      28.86     150       Closed recggMW2eyCYceNcy\nrec1z6ISJU2HdIsVm          Food  20.20      -0.20      20       Closed recJ4Witp9tpjaugn\n\n\nCREATE TABLE \"zip_code\" (\nzip_code bigint NOT NULL,\ntype text NULL,\ncity text NULL,\ncounty text NULL,\nstate text NULL,\nshort_state text NULL,\n    PRIMARY KEY (zip_code)\n);\n\nFirst 3 rows:\n zip_code     type       city             county       state short_state\n      501   Unique Holtsville     Suffolk County    New York          NY\n      544   Unique Holtsville     Suffolk County    New York          NY\n      601 Standard   Adjuntas Adjuntas Municipio Puerto Rico          PR\n\n\nCREATE TABLE \"expense\" (\nexpense_id text NOT NULL,\nexpense_description text NULL,\nexpense_date text NULL,\ncost real NULL,\napproved text NULL,\nlink_to_member text NULL,\nlink_to_budget text NULL,\n    PRIMARY KEY (expense_id)\n);\n\nFirst 3 rows:\n       expense_id expense_description expense_date   cost approved    link_to_member    link_to_budget\nrec017x6R3hQqkLAo Post Cards, Posters   2019-08-20 122.06     true rec4BLdZHS2Blfp4v recvKTAWAFKkVNnXQ\nrec1nIjoZKTYayqZ6      Water, Cookies   2019-10-08  20.20     true recro8T1MPMwRadVH recy8KY5bUdzF81vv\nrec1oMgNFt7Y0G40x               Pizza   2019-09-10  51.81     true recD078PnS3x2doBe recwXIiKoBMjXJsGZ\n\n\nCREATE TABLE \"member\" (\nmember_id text NOT NULL,\nfirst_name text NULL,\nlast_name text NULL,\nemail text NULL,\nposition text NULL,\nt_shirt_size text NULL,\nphone text NULL,\nzip bigint NULL,\nlink_to_major text NULL,\n    PRIMARY KEY (member_id)\n);\n\nFirst 3 rows:\n        member_id first_name last_name                  email position t_shirt_size          phone   zip     link_to_major\nrec1x5zBFIqoOuPW8     Angela   Sanders angela.sanders@lpu.edu   Member       Medium (651) 928-4507 55108 recxK3MHQFbR9J5uO\nrec280Sk7o31iG0Tx      Grant   Gilmour  grant.gilmour@lpu.edu   Member      X-Large   403-555-1310 29440 rec7BxKpjJ7bNph3O\nrec28ORZgcm1dtqBZ      Luisa     Guidi    luisa.guidi@lpu.edu   Member       Medium   442-555-5882 10002 recdIBgeU38UbV2sy\n\n\nCREATE TABLE \"attendance\" (\nlink_to_event text NOT NULL,\nlink_to_member text NOT NULL,\n    PRIMARY KEY (link_to_event, link_to_member)\n);\n\nFirst 3 rows:\n    link_to_event    link_to_member\nrec2N69DMcrqN9PJC recD078PnS3x2doBe\nrec2N69DMcrqN9PJC recP6DJPyi5donvXL\nrec2N69DMcrqN9PJC rec28ORZgcm1dtqBZ\n\n\nCREATE TABLE \"event\" (\nevent_id text NOT NULL,\nevent_name text NULL,\nevent_date text NULL,\ntype text NULL,\nnotes text NULL,\nlocation text NULL,\nstatus text NULL,\n    PRIMARY KEY (event_id)\n);\n\nFirst 3 rows:\n         event_id                 event_name          event_date     type location status\nrec0Si5cQ4rJRVzd6              March Meeting 2020-03-10T12:00:00  Meeting   MU 215   Open\nrec0akZnLLpGUloLH Officers meeting - January 2020-01-14T09:30:00  Meeting     None   Open\nrec0dZPcWXF0QjNnE           Spring Elections 2019-11-24T09:00:00 Election   MU 215   Open\n\n\nCREATE TABLE \"major\" (\nmajor_id text NOT NULL,\nmajor_name text NULL,\ndepartment text NULL,\ncollege text NULL,\n    PRIMARY KEY (major_id)\n);\n\nFirst 3 rows:\n         major_id                             major_name                                           department                                     college\nrec06DF6vZ1CyPKpc Outdoor Product Design and Development School of Applied Sciences, Technology and Education College of Agriculture and Applied Sciences\nrec09LedkREyskCNv             Agricultural Communication School of Applied Sciences, Technology and Education College of Agriculture and Applied Sciences\nrec0Eanv576RhQllI         Fisheries and Aquatic Sciences                        Watershed Sciences Department                College of Natural Resources\n\n********************Database: student_club********************\n",
  "superhero": "********************Database: superhero********************\nCREATE TABLE \"gender\" (\nid bigint NOT NULL,\ngender text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id gender\n  1   Male\n  2 Female\n  3    N/A\n\n\nCREATE TABLE \"superpower\" (\nid bigint NOT NULL,\npower_name text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id          power_name\n  1             Agility\n  2 Accelerated Healing\n  3  Lantern Power Ring\n\n\nCREATE TABLE \"publisher\" (\nid bigint NOT NULL,\npublisher_name text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id    publisher_name\n  1                  \n  2       ABC Studios\n  3 Dark Horse Comics\n\n\nCREATE TABLE \"superhero\" (\nid bigint NOT NULL,\nsuperhero_name text NULL,\nfull_name text NULL,\ngender_id bigint NULL,\neye_colour_id bigint NULL,\nhair_colour_id bigint NULL,\nskin_colour_id bigint NULL,\nrace_id bigint NULL,\npublisher_id bigint NULL,\nalignment_id bigint NULL,\nheight_cm bigint NULL,\nweight_kg bigint NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id superhero_name              full_name  gender_id  eye_colour_id  hair_colour_id  skin_colour_id  race_id  publisher_id  alignment_id  height_cm  weight_kg\n  1        3-D Man       Charles Chandler          1              9              13               1        1            13             1        188         90\n  2         A-Bomb Richard Milhouse Jones          1             33               1               1       24            13             1        203        441\n  3     Abe Sapien         Abraham Sapien          1              7               1               7       33             3             1        191         65\n\n\nCREATE TABLE \"colour\" (\nid bigint NOT NULL,\ncolour text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id    colour\n  1 No Colour\n  2     Amber\n  3    Auburn\n\n\nCREATE TABLE \"attribute\" (\nid bigint NOT NULL,\nattribute_name text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id attribute_name\n  1   Intelligence\n  2       Strength\n  3          Speed\n\n\nCREATE TABLE \"hero_power\" (\nhero_id bigint NULL,\npower_id bigint NULL\n);\n\nFirst 3 rows:\n hero_id  power_id\n       1         1\n       1        18\n       1        26\n\n\nCREATE TABLE \"race\" (\nid bigint NOT NULL,\nrace text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  race\n  1     -\n  2 Alien\n  3 Alpha\n\n\nCREATE TABLE \"alignment\" (\nid bigint NOT NULL,\nalignment text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id alignment\n  1      Good\n  2       Bad\n  3   Neutral\n\n\nCREATE TABLE \"hero_attribute\" (\nhero_id bigint NULL,\nattribute_id bigint NULL,\nattribute_value bigint NULL\n);\n\nFirst 3 rows:\n hero_id  attribute_id  attribute_value\n       1             1               80\n       2             1               75\n       3             1               95\n\n********************Database: superhero********************\n",
  "codebase_community": "********************Database: codebase_community********************\nCREATE TABLE \"postlinks\" (\nid bigint NOT NULL,\ncreationdate timestamp with time zone NULL,\npostid bigint NULL,\nrelatedpostid bigint NULL,\nlinktypeid bigint NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id              creationdate  postid  relatedpostid  linktypeid\n108 2010-07-21 14:47:33+08:00     395            173           1\n145 2010-07-23 16:30:41+08:00     548            539           1\n217 2010-07-26 20:12:15+08:00     375             30           1\n\n\nCREATE TABLE \"posthistory\" (\nid bigint NOT NULL,\nposthistorytypeid bigint NULL,\npostid bigint NULL,\nrevisionguid text NULL,\ncreationdate timestamp with time zone NULL,\nuserid bigint NULL,\ntext text NULL,\ncomment text NULL,\nuserdisplayname text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  posthistorytypeid  postid                         revisionguid              creationdate  userid comment userdisplayname\n  1                  2       1 e58bf7fd-e60f-4c58-a6e4-dfc91cf98a69 2010-07-19 19:12:12+08:00       8                        \n  2                  1       1 e58bf7fd-e60f-4c58-a6e4-dfc91cf98a69 2010-07-19 19:12:12+08:00       8                        \n  3                  3       1 e58bf7fd-e60f-4c58-a6e4-dfc91cf98a69 2010-07-19 19:12:12+08:00       8                        \n\n\nCREATE TABLE \"badges\" (\nid bigint NOT NULL,\nuserid bigint NULL,\nname text NULL,\ndate timestamp with time zone NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  userid    name                      date\n  1       5 Teacher 2010-07-19 19:39:07+08:00\n  2       6 Teacher 2010-07-19 19:39:07+08:00\n  3       8 Teacher 2010-07-19 19:39:07+08:00\n\n\nCREATE TABLE \"posts\" (\nid bigint NOT NULL,\nposttypeid bigint NULL,\nacceptedanswerid bigint NULL,\ncreaiondate timestamp with time zone NULL,\nscore bigint NULL,\nviewcount bigint NULL,\nbody text NULL,\nowneruserid bigint NULL,\nlasactivitydate timestamp with time zone NULL,\ntitle text NULL,\ntags text NULL,\nanswercount bigint NULL,\ncommentcount bigint NULL,\nfavoritecount bigint NULL,\nlasteditoruserid bigint NULL,\nlasteditdate timestamp with time zone NULL,\ncommunityowneddate timestamp with time zone NULL,\nparentid bigint NULL,\ncloseddate timestamp with time zone NULL,\nownerdisplayname text NULL,\nlasteditordisplayname text NULL,\n    PRIMARY KEY (id),\n    FOREIGN KEY (lasteditoruserid) REFERENCES users(id),\n    FOREIGN KEY (owneruserid) REFERENCES users(id)\n);\n\nFirst 3 rows:\n id  posttypeid  acceptedanswerid               creaiondate  score  viewcount  owneruserid           lasactivitydate                                                             title                           tags  answercount  commentcount  favoritecount  lasteditoruserid              lasteditdate        communityowneddate parentid closeddate ownerdisplayname lasteditordisplayname\n  1           1                15 2010-07-19 19:12:12+08:00     23       1278            8 2010-09-15 21:08:26+08:00                                     Eliciting priors from experts <bayesian><prior><elicitation>            5             1             14               NaN                       NaT                       NaT     None       None             None                  None\n  2           1                59 2010-07-19 19:12:57+08:00     22       8198           24 2012-11-12 09:21:54+08:00                                                What is normality?     <distributions><normality>            7             1              8              88.0 2010-08-07 17:56:44+08:00                       NaT     None       None             None                  None\n  3           1                 5 2010-07-19 19:13:28+08:00     54       3613           18 2013-05-27 14:48:36+08:00 What are some valuable Statistical Analysis open source projects?        <software><open-source>           19             4             36             183.0 2011-02-12 05:50:03+08:00 2010-07-19 19:13:28+08:00     None       None             None                  None\n\n\nCREATE TABLE \"users\" (\nid bigint NOT NULL,\nreputation bigint NULL,\ncreationdate timestamp with time zone NULL,\ndisplayname text NULL,\nlastaccessdate timestamp with time zone NULL,\nwebsiteurl text NULL,\nlocation text NULL,\naboutme text NULL,\nviews bigint NULL,\nupvotes bigint NULL,\ndownvotes bigint NULL,\naccountid bigint NULL,\nage bigint NULL,\nprofileimageurl text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  reputation              creationdate  displayname            lastaccessdate                     websiteurl           location  views  upvotes  downvotes  accountid  age\n -1           1 2010-07-19 06:55:26+08:00    Community 2010-07-19 06:55:26+08:00 http://meta.stackexchange.com/ on the server farm      0     5007       1920         -1  NaN\n  2         101 2010-07-19 14:01:36+08:00 Geoff Dalgas 2013-11-12 22:07:23+08:00       http://stackoverflow.com      Corvallis, OR     25        3          0          2 37.0\n  3         101 2010-07-19 15:34:50+08:00 Jarrod Dixon 2014-08-08 06:42:58+08:00       http://stackoverflow.com       New York, NY     22       19          0          3 35.0\n\n\nCREATE TABLE \"tags\" (\nid bigint NOT NULL,\ntagname text NULL,\ncount bigint NULL,\nexcerptpostid bigint NULL,\nwikipostid bigint NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id     tagname  count  excerptpostid  wikipostid\n  1    bayesian   1342        20258.0     20257.0\n  2       prior    168        62158.0     62157.0\n  3 elicitation      6            NaN         NaN\n\n\nCREATE TABLE \"votes\" (\nid bigint NOT NULL,\npostid bigint NULL,\nvotetypeid bigint NULL,\ncreationdate date NULL,\nuserid bigint NULL,\nbountyamount bigint NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  postid  votetypeid creationdate userid bountyamount\n  1       3           2   2010-07-19   None         None\n  2       2           2   2010-07-19   None         None\n  3       5           2   2010-07-19   None         None\n\n\nCREATE TABLE \"comments\" (\nid bigint NOT NULL,\npostid bigint NULL,\nscore bigint NULL,\ntext text NULL,\ncreationdate timestamp with time zone NULL,\nuserid bigint NULL,\nuserdisplayname text NULL,\n    PRIMARY KEY (id)\n);\n\nFirst 3 rows:\n id  postid  score              creationdate  userid userdisplayname\n  1       3      5 2010-07-19 19:15:52+08:00      13            None\n  2       5      0 2010-07-19 19:16:14+08:00      13            None\n  3       9      0 2010-07-19 19:18:54+08:00      13            None\n\n********************Database: codebase_community********************\n",
  "erolp": "********************Database: erolp********************\nCREATE TABLE \"learners\" (\nlearner_code integer NOT NULL DEFAULT nextval('learners_learner_code_seq'::regclass),\nAge integer NULL,\nGender character varying NULL,\nGeographic_Location character varying NULL,\nSocioeconomic_Background character varying NULL,\nEducation_Level character varying NULL,\nPrevious_Academic_Performance numeric NULL,\nLanguage_Proficiency character varying NULL,\nPreferred_Learning_Medium character varying NULL,\nLearning_Pace character varying NULL,\nEngagement_History integer NULL DEFAULT 0,\n    PRIMARY KEY (learner_code)\n);\n\nFirst 3 rows:\n learner_code\n            1\n            2\n            3\n\n\nCREATE TABLE \"institutions\" (\ninstitution_key integer NOT NULL DEFAULT nextval('institutions_institution_key_seq'::regclass),\nInstitution_Type character varying NULL,\nRegion character varying NULL,\nPolicy_Implementation character varying NULL,\nBudget_Allocation numeric NULL,\nNumber_of_Instructors integer NULL,\nInstructor_Experience numeric NULL,\n    PRIMARY KEY (institution_key)\n);\n\nFirst 3 rows:\n institution_key\n               1\n               2\n               3\n\n\nCREATE TABLE \"curricula\" (\ncurriculum_id integer NOT NULL DEFAULT nextval('curricula_curriculum_id_seq'::regclass),\nModules integer NULL,\nSequence character varying NULL,\nCredit_Hours integer NULL,\nPolicy_Alignment character varying NULL,\nIntegration_Components character varying NULL,\nAssessment_Type character varying NULL,\nWeightage_Distribution character varying NULL,\n    PRIMARY KEY (curriculum_id)\n);\n\nFirst 3 rows:\n curriculum_id\n             1\n             2\n             3\n\n\nCREATE TABLE \"educational_resources\" (\nresource_key integer NOT NULL DEFAULT nextval('educational_resources_resource_key_seq'::regclass),\nContent_Type character varying NULL,\nContent_Length integer NULL,\nDifficulty_Level character varying NULL,\nRelevance character varying NULL,\nPlatform_Used character varying NULL,\nOffline_Availability boolean NULL,\nInteractivity_Level character varying NULL,\nUser_Ratings numeric NULL,\nDownloads_Views integer NULL DEFAULT 0,\nUser_Feedback character varying NULL,\n    PRIMARY KEY (resource_key)\n);\n\nFirst 3 rows:\n resource_key\n            1\n            2\n            3\n\n\nCREATE TABLE \"external_factors\" (\nfactor_id integer NOT NULL DEFAULT nextval('external_factors_factor_id_seq'::regclass),\nSocial_Media_Influence numeric NULL,\nPeer_Influence character varying NULL,\nCultural_Values character varying NULL,\nPerception_of_IPE character varying NULL,\nAccess_to_Technology character varying NULL,\nUse_of_AI_ML boolean NULL,\n    PRIMARY KEY (factor_id)\n);\n\nFirst 3 rows:\n factor_id\n         1\n         2\n         3\n\n\nCREATE TABLE \"outcomes\" (\noutcome_code integer NOT NULL DEFAULT nextval('outcomes_outcome_code_seq'::regclass),\nlearner_code integer NOT NULL,\nPre_Test_Score numeric NULL,\nPost_Test_Score numeric NULL,\nKnowledge_Improvement numeric NULL,\nBehavioral_Changes boolean NULL,\nCritical_Thinking_Skills integer NULL,\nAnalytical_Skills integer NULL,\nCommunication_Skills integer NULL,\nLearner_Satisfaction_Score numeric NULL,\nCourse_Completion_Rate numeric NULL,\n    PRIMARY KEY (outcome_code),\n    FOREIGN KEY (learner_code) REFERENCES learners(learner_code)\n);\n\nFirst 3 rows:\n outcome_code  learner_code\n            1             1\n            2             2\n            3             3\n\n\nCREATE TABLE \"enrollment\" (\nenrollment_code integer NOT NULL DEFAULT nextval('enrollment_enrollment_code_seq'::regclass),\nlearner_code integer NOT NULL,\ninstitution_key integer NOT NULL,\ncurriculum_id integer NOT NULL,\nenrollment_date date NULL DEFAULT CURRENT_DATE,\n    PRIMARY KEY (enrollment_code),\n    FOREIGN KEY (institution_key) REFERENCES institutions(institution_key),\n    FOREIGN KEY (learner_code) REFERENCES learners(learner_code),\n    FOREIGN KEY (curriculum_id) REFERENCES curricula(curriculum_id)\n);\n\nFirst 3 rows:\n enrollment_code  learner_code  institution_key  curriculum_id enrollment_date\n               1             1                1              1      2025-01-15\n               2             2                2              2      2025-01-15\n               3             3                3              3      2025-01-15\n\n\nCREATE TABLE \"curriculum_resources\" (\ncurriculum_resource_id integer NOT NULL DEFAULT nextval('curriculum_resources_curriculum_resource_id_seq'::regclass),\ncurriculum_id integer NOT NULL,\nresource_key integer NOT NULL,\nrecommended boolean NULL DEFAULT true,\n    PRIMARY KEY (curriculum_resource_id),\n    FOREIGN KEY (curriculum_id) REFERENCES curricula(curriculum_id),\n    FOREIGN KEY (resource_key) REFERENCES educational_resources(resource_key)\n);\n\nFirst 3 rows:\n curriculum_resource_id  curriculum_id  resource_key  recommended\n                      1              1             1         True\n                      2              2             2         True\n                      3              3             3         True\n\n\nCREATE TABLE \"resource_usage\" (\nusage_code integer NOT NULL DEFAULT nextval('resource_usage_usage_code_seq'::regclass),\nlearner_code integer NOT NULL,\nresource_key integer NOT NULL,\ntime_spent integer NULL DEFAULT 0,\nrating numeric NULL,\nfeedback character varying NULL,\nusage_date date NULL DEFAULT CURRENT_DATE,\n    PRIMARY KEY (usage_code),\n    FOREIGN KEY (learner_code) REFERENCES learners(learner_code),\n    FOREIGN KEY (resource_key) REFERENCES educational_resources(resource_key)\n);\n\nFirst 3 rows:\n usage_code  learner_code  resource_key  time_spent rating feedback usage_date\n          1             1             1           0    3.0 Negative 2025-01-15\n          2             2             2           0    3.2 Positive 2025-01-15\n          3             3             3           0    3.9 Positive 2025-01-15\n\n\nCREATE TABLE \"performance_predictions\" (\nprediction_code integer NOT NULL DEFAULT nextval('performance_predictions_prediction_code_seq'::regclass),\nlearner_code integer NOT NULL,\ndate_recorded date NULL DEFAULT CURRENT_DATE,\nPerformance_Prediction numeric NULL,\n    PRIMARY KEY (prediction_code),\n    FOREIGN KEY (learner_code) REFERENCES learners(learner_code)\n);\n\nFirst 3 rows:\n prediction_code  learner_code date_recorded\n               1             1    2025-01-15\n               2             2    2025-01-15\n               3             3    2025-01-15\n\n\nCREATE TABLE \"target_labels\" (\nlabel_code integer NOT NULL DEFAULT nextval('target_labels_label_code_seq'::regclass),\nlearner_code integer NOT NULL,\nEffectiveness_Score numeric NULL,\nEngagement_Level character varying NULL,\nKnowledge_Gain numeric NULL,\nBehavioral_Impact boolean NULL,\nSkill_Development character varying NULL,\nTalent_Identification character varying NULL,\nRetention_Rate numeric NULL,\nResource_Allocation_Efficiency numeric NULL,\nRelevance_Score numeric NULL,\nLearner_Satisfaction_Rating numeric NULL,\nCompletion_Likelihood numeric NULL,\n    PRIMARY KEY (label_code),\n    FOREIGN KEY (learner_code) REFERENCES learners(learner_code)\n);\n\nFirst 3 rows:\n label_code  learner_code\n          1             1\n          2             2\n          3             3\n\n********************Database: erolp********************\n"
}