Help for this page

Select Code to Download


  1. or download this
    CREATE TABLE seven_stud_spread_stakes(bring_in int, fourth_street int 
    +check(fourth_street >= bring_in), fifth_street int check(fifth_street
    + >= bring_in), sixth_street int check(sixth_street >= bring_in), seve
    +nth_street int check(seventh_street >= bring_in));
    
    ...
    
    CREATE TABLE stakes(small_blind int, big_blind int check(big_blind >= 
    +small_blind), preflop int check(preflop >= big_blind), flop int check
    +(flop >= preflop), turn int check(turn >= flop), river int check(rive
    +r >= turn));
    INSERT INTO stakes VALUES(1, 3, 3, 3, 6, 9);
    
  2. or download this
    CREATE TABLE v_limits(v_limit TEXT PRIMARY KEY);
    CREATE TABLE states(abbreviation TEXT PRIMARY KEY, state TEXT);
    ...
    CREATE TABLE venues(venue TEXT PRIMAY KEY);
    
    CREATE TABLE visits(id INT PRIMARY KEY, arrival_date DATE, departure_d
    +ate DATE, arrival_time TIME, departure_time TIME, venue TEXT REFERENC
    +ES venues(venue), city TEXT REFERENCES cities(city), state TEXT REFER
    +ENCES states(abbreviation), game TEXT REFERENCES games(game), stake T
    +EXT REFERENCES stakes(stake), kill TEXT REFERENCES kills(kill), hi_lo
    + TEXT REFERENCES hi_lows(hi_lo), v_limit REFERENCES v_limits(v_limit)
    +, buy_in MONEY, cash_out MONEY);
    
  3. or download this
    arrival_date:   20180214
    departure_date: 20180215
    ...
    limit:          "fixed"
    buy_in:         200
    cash_out:       400