Help for this page

Select Code to Download


  1. or download this
    CREATE TABLE Real_Events (
        Id          INT,
    ...
        Name2    VARCHAR,
        Group    VARCHAR,
    )
    
  2. or download this
      SELECT * from Events WHERE  Group="physicists" AND Date>$event_date 
    +AND
      Date<=($event_date + $window))
    
  3. or download this
      SELECT * from Potential_Events WHERE
      Group="physicists" AND ( ( Name1="Alice" AND   Name2="Bob" ) OR (
      Name1="Alice" AND  Name2="Charlie" ) OR ( Name1="Bob" and  Name2="Ch
    +arlie" ) )
    
  4. or download this
      SELECT * from Events WHERE Group="physicists" AND  Name1="Alice" AND
      Name2="Bob" AND Date>$event_date)
    
  5. or download this
      push (@{$lookup_group{$_->{"Group"}}}, $_) for @rows;