answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT winning_driver FROM table_25773116_2 WHERE date = "April 11"
|
CREATE TABLE table_25773116_2 (winning_driver VARCHAR, date VARCHAR)
|
Who won the April 11 race?
|
SELECT location FROM table_25773116_2 WHERE pole_position = "Daniel Erickson" AND fastest_lap = "Cole Morgan"
|
CREATE TABLE table_25773116_2 (location VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR)
|
Where was the race where Cole Morgan had the fastest lap and Daniel Erickson had pole position?
|
SELECT COUNT(round) FROM table_25773116_2 WHERE date = "May 8"
|
CREATE TABLE table_25773116_2 (round VARCHAR, date VARCHAR)
|
How many rounds were played on May 8?
|
SELECT pole_position FROM table_25773116_2 WHERE fastest_lap = "Victor Carbone" AND location = "Braselton, Georgia"
|
CREATE TABLE table_25773116_2 (pole_position VARCHAR, fastest_lap VARCHAR, location VARCHAR)
|
Who had pole position for the races in Braselton, Georgia where Victor Carbone had fastest lap?
|
SELECT location FROM table_25773116_2 WHERE winning_team = "Audette Racing"
|
CREATE TABLE table_25773116_2 (location VARCHAR, winning_team VARCHAR)
|
Where did Audette Racing win?
|
SELECT director_s_ FROM table_25764073_3 WHERE writer_s_ = "Peter Gawler"
|
CREATE TABLE table_25764073_3 (director_s_ VARCHAR, writer_s_ VARCHAR)
|
Name the directors for peter gawler
|
SELECT MIN(episode__number) FROM table_25764073_3 WHERE writer_s_ = "Anne Brooksbank and Vicki Madden"
|
CREATE TABLE table_25764073_3 (episode__number INTEGER, writer_s_ VARCHAR)
|
Name the least episode number for anne brooksbank and vicki madden
|
SELECT title FROM table_25764073_3 WHERE season__number = 35
|
CREATE TABLE table_25764073_3 (title VARCHAR, season__number VARCHAR)
|
Name the title for season number 35
|
SELECT points_per_game FROM table_25774493_3 WHERE rebounds_per_game = "15.0"
|
CREATE TABLE table_25774493_3 (points_per_game VARCHAR, rebounds_per_game VARCHAR)
|
What were the points per game in the selection where the rebounds per game were 15.0?
|
SELECT blocks_per_game FROM table_25774493_3 WHERE field_goal_percentage = ".594 (2nd)"
|
CREATE TABLE table_25774493_3 (blocks_per_game VARCHAR, field_goal_percentage VARCHAR)
|
What were the blocks per game in the selection where the field goal percentage was .594 (2nd)?
|
SELECT name FROM table_25794010_1 WHERE company = "company D"
|
CREATE TABLE table_25794010_1 (name VARCHAR, company VARCHAR)
|
Name the name for company d
|
SELECT name FROM table_25794010_1 WHERE organization_date = "Unknown"
|
CREATE TABLE table_25794010_1 (name VARCHAR, organization_date VARCHAR)
|
Name the name for organization date being unknown
|
SELECT name FROM table_25794010_1 WHERE county = "Desha"
|
CREATE TABLE table_25794010_1 (name VARCHAR, county VARCHAR)
|
Name the name for desha
|
SELECT company FROM table_25794010_1 WHERE county = "Desha"
|
CREATE TABLE table_25794010_1 (company VARCHAR, county VARCHAR)
|
Name the company for desha county
|
SELECT writer_s_ FROM table_25800134_1 WHERE series__number = 56
|
CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, series__number VARCHAR)
|
Who wrote the episode with series number 56?
|
SELECT MAX(series__number) FROM table_25800134_1 WHERE airdate = "February 16, 1957"
|
CREATE TABLE table_25800134_1 (series__number INTEGER, airdate VARCHAR)
|
What is largest series number for the episode that aired February 16, 1957?
|
SELECT director FROM table_25800134_1 WHERE airdate = "December 15, 1956"
|
CREATE TABLE table_25800134_1 (director VARCHAR, airdate VARCHAR)
|
Who directed the episodes that aired December 15, 1956?
|
SELECT writer_s_ FROM table_25800134_1 WHERE airdate = "December 1, 1956"
|
CREATE TABLE table_25800134_1 (writer_s_ VARCHAR, airdate VARCHAR)
|
Who wrote the episode that aired December 1, 1956?
|
SELECT writer_s_ FROM table_25800134_13 WHERE airdate = "October 14, 1968"
|
CREATE TABLE table_25800134_13 (writer_s_ VARCHAR, airdate VARCHAR)
|
Who was the writer of the episode that originally aired on October 14, 1968?
|
SELECT MAX(season__number) FROM table_25800134_14 WHERE airdate = "February 2, 1970"
|
CREATE TABLE table_25800134_14 (season__number INTEGER, airdate VARCHAR)
|
What is the season # for the episode with air date february 2, 1970?
|
SELECT writer_s_ FROM table_25800134_17 WHERE airdate = "September 11, 1972"
|
CREATE TABLE table_25800134_17 (writer_s_ VARCHAR, airdate VARCHAR)
|
Who was the writer who wrote the episode that was aired on September 11, 1972?
|
SELECT director FROM table_25800134_19 WHERE series__number = 626
|
CREATE TABLE table_25800134_19 (director VARCHAR, series__number VARCHAR)
|
Who directed episode number 626 in the series?
|
SELECT writer_s_ FROM table_25800134_2 WHERE season__number = 24
|
CREATE TABLE table_25800134_2 (writer_s_ VARCHAR, season__number VARCHAR)
|
Who are all the writers of episodes in season 24?
|
SELECT title FROM table_25800134_2 WHERE airdate = "May 10, 1958"
|
CREATE TABLE table_25800134_2 (title VARCHAR, airdate VARCHAR)
|
What is the title of the episode that aired on May 10, 1958?
|
SELECT writer_s_ FROM table_25800134_4 WHERE season__number = 15
|
CREATE TABLE table_25800134_4 (writer_s_ VARCHAR, season__number VARCHAR)
|
Who was the writer of episode 15?
|
SELECT title FROM table_25800134_4 WHERE season__number = 33
|
CREATE TABLE table_25800134_4 (title VARCHAR, season__number VARCHAR)
|
What is the title of #33?
|
SELECT COUNT(director) FROM table_25800134_4 WHERE series__number = 158
|
CREATE TABLE table_25800134_4 (director VARCHAR, series__number VARCHAR)
|
How many directors worked on #158?
|
SELECT COUNT(writer_s_) FROM table_25800134_3 WHERE season__number = 1
|
CREATE TABLE table_25800134_3 (writer_s_ VARCHAR, season__number VARCHAR)
|
How many writers were for season #1?
|
SELECT director FROM table_25800134_3 WHERE airdate = "May 2, 1959"
|
CREATE TABLE table_25800134_3 (director VARCHAR, airdate VARCHAR)
|
Who was the director for the episode on May 2, 1959?
|
SELECT no_in_series FROM table_25810656_3 WHERE production_code = 204
|
CREATE TABLE table_25810656_3 (no_in_series VARCHAR, production_code VARCHAR)
|
Name the number in series for production code being 204
|
SELECT COUNT(title) FROM table_25810656_3 WHERE no_in_series = 25
|
CREATE TABLE table_25810656_3 (title VARCHAR, no_in_series VARCHAR)
|
Name the number of title for number in series being 25
|
SELECT MAX(stage) FROM table_25802618_15 WHERE winner = "Mikhail Ignatiev"
|
CREATE TABLE table_25802618_15 (stage INTEGER, winner VARCHAR)
|
What was the latest stage won by Mikhail Ignatiev?
|
SELECT race FROM table_2581397_4 WHERE weight__kg_ = "55" AND winner_2nd = "1st - Jim And Tonic"
|
CREATE TABLE table_2581397_4 (race VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR)
|
In what race was the weight in kg 55 and the winner/2nd 1st - Jim and Tonic?
|
SELECT distance FROM table_2581397_4 WHERE race = "Manikato Stakes"
|
CREATE TABLE table_2581397_4 (distance VARCHAR, race VARCHAR)
|
What was the distance in the Manikato Stakes race?
|
SELECT distance FROM table_2581397_4 WHERE weight__kg_ = "56" AND winner_2nd = "2nd - Fritz"
|
CREATE TABLE table_2581397_4 (distance VARCHAR, weight__kg_ VARCHAR, winner_2nd VARCHAR)
|
What was the distance in the race where the weight in kg was 56 and the winner/2nd was 2nd - Fritz?
|
SELECT date FROM table_2581397_5 WHERE race = "Doncaster"
|
CREATE TABLE table_2581397_5 (date VARCHAR, race VARCHAR)
|
What date was the Doncaster race?
|
SELECT air_date FROM table_25816476_2 WHERE team_guest_captain = "John Bishop"
|
CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR)
|
What was the air date when the team guest captain was john bishop?
|
SELECT team_guest_captain FROM table_25816476_2 WHERE episode = 2
|
CREATE TABLE table_25816476_2 (team_guest_captain VARCHAR, episode VARCHAR)
|
Who was the team guest captain for episode 2?
|
SELECT team_swash FROM table_25816476_2 WHERE team_guest_captain = "Gail Porter"
|
CREATE TABLE table_25816476_2 (team_swash VARCHAR, team_guest_captain VARCHAR)
|
Who was the team swash when the team guest captain was gail porter?
|
SELECT COUNT(team_coxy) FROM table_25816476_2 WHERE air_date = "24 January 2010" AND team_guest_captain = "Gail Porter"
|
CREATE TABLE table_25816476_2 (team_coxy VARCHAR, air_date VARCHAR, team_guest_captain VARCHAR)
|
How many entries are there for team coxy for the air date of 24 january 2010 and team guest captain of gail porter?
|
SELECT COUNT(air_date) FROM table_25816476_2 WHERE team_guest_captain = "Stephen K Amos"
|
CREATE TABLE table_25816476_2 (air_date VARCHAR, team_guest_captain VARCHAR)
|
How many entries are shown for an air date when the team guest captain was stephen k amos?
|
SELECT group FROM table_2581397_2 WHERE venue = "Moonee Valley"
|
CREATE TABLE table_2581397_2 (group VARCHAR, venue VARCHAR)
|
What group was sunline in when he was at moonee valley?
|
SELECT win_loss FROM table_25820786_2 WHERE nationality = "Switzerland"
|
CREATE TABLE table_25820786_2 (win_loss VARCHAR, nationality VARCHAR)
|
What was the win-loss record for the player from Switzerland?
|
SELECT win_loss FROM table_25820584_7 WHERE year_s_ = "1969"
|
CREATE TABLE table_25820584_7 (win_loss VARCHAR, year_s_ VARCHAR)
|
What was the win loss record the lady who appeard in 1969?
|
SELECT player FROM table_25820584_7 WHERE year_s_ = "1969"
|
CREATE TABLE table_25820584_7 (player VARCHAR, year_s_ VARCHAR)
|
What player(s) appeared in 1969?
|
SELECT name FROM table_25826954_7 WHERE nationality = "Norway"
|
CREATE TABLE table_25826954_7 (name VARCHAR, nationality VARCHAR)
|
Name the name for norway nationality
|
SELECT written_by FROM table_25830834_2 WHERE production_code = "2J5153"
|
CREATE TABLE table_25830834_2 (written_by VARCHAR, production_code VARCHAR)
|
Who wrote the episode with the production code 2j5153?
|
SELECT filter FROM table_2583036_1 WHERE wavelength = "222mm (K-band)"
|
CREATE TABLE table_2583036_1 (filter VARCHAR, wavelength VARCHAR)
|
what is the filter when the wavelength is 222mm (k-band)?
|
SELECT COUNT(camera) FROM table_2583036_1 WHERE exposures = 53
|
CREATE TABLE table_2583036_1 (camera VARCHAR, exposures VARCHAR)
|
how many times was the exposures 53?
|
SELECT exposures FROM table_2583036_1 WHERE total_exposure_time = "105,000s"
|
CREATE TABLE table_2583036_1 (exposures VARCHAR, total_exposure_time VARCHAR)
|
how many exposures where there when the total exposure time is 105,000s?
|
SELECT camera FROM table_2583036_1 WHERE wavelength = "814nm (I-band)"
|
CREATE TABLE table_2583036_1 (camera VARCHAR, wavelength VARCHAR)
|
what is the camera used when the wavelength is 814nm (i-band)?
|
SELECT title FROM table_2582519_6 WHERE director = "Paul Annett"
|
CREATE TABLE table_2582519_6 (title VARCHAR, director VARCHAR)
|
What is the title of the show with director Paul Annett?
|
SELECT titles FROM table_25840200_1 WHERE notes = "Undercard of Stevenson/Bellew"
|
CREATE TABLE table_25840200_1 (titles VARCHAR, notes VARCHAR)
|
What was the title for the Undercard of Stevenson/Bellew?
|
SELECT titles FROM table_25840200_1 WHERE date = "November 9" AND division = "Super Bantamweight"
|
CREATE TABLE table_25840200_1 (titles VARCHAR, date VARCHAR, division VARCHAR)
|
What are the titles for the November 9 Super Bantamweight division?
|
SELECT COUNT(notes) FROM table_25840200_1 WHERE fight = "Devon Alexander vs. Shawn Porter"
|
CREATE TABLE table_25840200_1 (notes VARCHAR, fight VARCHAR)
|
How many notes are there for the Devon Alexander vs. Shawn Porter fight?
|
SELECT division FROM table_25840200_1 WHERE tv = "HBO PPV"
|
CREATE TABLE table_25840200_1 (division VARCHAR, tv VARCHAR)
|
What division was on HBO PPV?
|
SELECT location FROM table_25840200_1 WHERE notes = "Undercard of Stevenson/Bellew"
|
CREATE TABLE table_25840200_1 (location VARCHAR, notes VARCHAR)
|
Where was the Undercard of Stevenson/Bellew?
|
SELECT COUNT(division) FROM table_25840200_1 WHERE location = "Verona, USA"
|
CREATE TABLE table_25840200_1 (division VARCHAR, location VARCHAR)
|
What was the division number for Verona, USA?
|
SELECT cvt_hd FROM table_25839957_5 WHERE market = "Mobile"
|
CREATE TABLE table_25839957_5 (cvt_hd VARCHAR, market VARCHAR)
|
What mobile markets have cvt hd?
|
SELECT COUNT(opengl) FROM table_25839957_5 WHERE code_name = "Ironlake ( Clarkdale )"
|
CREATE TABLE table_25839957_5 (opengl VARCHAR, code_name VARCHAR)
|
How many opengl have the ironlake ( clarkdale ) code name?
|
SELECT core_clock___mhz__ FROM table_25839957_5 WHERE memory_bandwidth___gb_s__ = "21.3"
|
CREATE TABLE table_25839957_5 (core_clock___mhz__ VARCHAR, memory_bandwidth___gb_s__ VARCHAR)
|
What core clocks ( mhz ) have a 21.3 memory bandwidth ( gb/s )?
|
SELECT MIN(execution_units) FROM table_25839957_5
|
CREATE TABLE table_25839957_5 (execution_units INTEGER)
|
What's the minimum number of execution units?
|
SELECT COUNT(shader_model) FROM table_25839957_5 WHERE core_clock___mhz__ = "900"
|
CREATE TABLE table_25839957_5 (shader_model VARCHAR, core_clock___mhz__ VARCHAR)
|
How many shader models have a 900 core clock ( mhz )?
|
SELECT MAX(population__2000_census__) FROM table_2588674_1 WHERE area_km² = "2.33"
|
CREATE TABLE table_2588674_1 (population__2000_census__ INTEGER, area_km² VARCHAR)
|
What is the population for the place with an area of 2.33 km2?
|
SELECT COUNT(region) FROM table_2588674_1 WHERE village = "Asan-Maina"
|
CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)
|
How many places named asan-maina?
|
SELECT COUNT(region) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite"
|
CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)
|
How many places named mongmong-toto-maite?
|
SELECT MIN(pop_density) FROM table_2588674_1 WHERE village = "Mongmong-Toto-Maite"
|
CREATE TABLE table_2588674_1 (pop_density INTEGER, village VARCHAR)
|
What is the population density of mongmong-toto-maite?
|
SELECT village FROM table_2588674_1 WHERE area_km² = "27.19"
|
CREATE TABLE table_2588674_1 (village VARCHAR, area_km² VARCHAR)
|
What village has an area of 27.19 km2?
|
SELECT region FROM table_2588674_1 WHERE village = "Inarajan"
|
CREATE TABLE table_2588674_1 (region VARCHAR, village VARCHAR)
|
What region is inarajan in?
|
SELECT MAX(pos) FROM table_25887826_17 WHERE avg = "1.8529"
|
CREATE TABLE table_25887826_17 (pos INTEGER, avg VARCHAR)
|
How many POS when the average is 1.8529?
|
SELECT MAX(07 AS _a_pts) FROM table_25887826_17 WHERE avg = "1.4902"
|
CREATE TABLE table_25887826_17 (avg VARCHAR)
|
How many 07 A points for the team with 1.4902 average?
|
SELECT COUNT(08 AS _a_pts) FROM table_25887826_17 WHERE avg = "1.1863"
|
CREATE TABLE table_25887826_17 (avg VARCHAR)
|
How many figures for 08 A points for the team with 1.1863 average?
|
SELECT MAX(10 AS _c_pts) FROM table_25887826_17 WHERE total_pts = 39
|
CREATE TABLE table_25887826_17 (total_pts VARCHAR)
|
What is the largest number of 10 C points for a team with 39 total points?
|
SELECT directed_by FROM table_25851971_1 WHERE us_viewers__million_ = "4.82"
|
CREATE TABLE table_25851971_1 (directed_by VARCHAR, us_viewers__million_ VARCHAR)
|
Who directed the episode with 4.82 million U.S. viewers?
|
SELECT directed_by FROM table_25851971_1 WHERE production_code = "2J5457"
|
CREATE TABLE table_25851971_1 (directed_by VARCHAR, production_code VARCHAR)
|
Who directed the episode that had a production code of 2j5457?
|
SELECT MIN(no) FROM table_25851971_1 WHERE written_by = "Anthony Sparks"
|
CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR)
|
What episode number was written by Anthony Sparks?
|
SELECT production_code FROM table_25851971_1 WHERE written_by = "Anthony Sparks"
|
CREATE TABLE table_25851971_1 (production_code VARCHAR, written_by VARCHAR)
|
What was the production code of the episode written by Anthony Sparks?
|
SELECT MAX(no) FROM table_25851971_1 WHERE written_by = "Karin Gist"
|
CREATE TABLE table_25851971_1 (no INTEGER, written_by VARCHAR)
|
What episode number was written by Karin Gist?
|
SELECT leader_battle FROM table_25920798_2 WHERE vote = "4-3"
|
CREATE TABLE table_25920798_2 (leader_battle VARCHAR, vote VARCHAR)
|
Name the leader battle for 4-3 vote
|
SELECT finish FROM table_25920798_2 WHERE vote = "4-4"
|
CREATE TABLE table_25920798_2 (finish VARCHAR, vote VARCHAR)
|
Name the finish for 4-4
|
SELECT eliminated FROM table_25920798_2 WHERE finish = "Left Day 9"
|
CREATE TABLE table_25920798_2 (eliminated VARCHAR, finish VARCHAR)
|
Name the left day 9 finish for eliminated
|
SELECT leader_battle FROM table_25920798_2 WHERE eliminated = "Plamen"
|
CREATE TABLE table_25920798_2 (leader_battle VARCHAR, eliminated VARCHAR)
|
Name the leader battle for plamen
|
SELECT institution FROM table_2589963_1 WHERE women = "Lady Saints"
|
CREATE TABLE table_2589963_1 (institution VARCHAR, women VARCHAR)
|
What institution is represented by the lady saints?
|
SELECT status FROM table_2589963_1 WHERE juniors = "Baby Olympians"
|
CREATE TABLE table_2589963_1 (status VARCHAR, juniors VARCHAR)
|
What status of school is the school represented by the baby olympians?
|
SELECT MAX(founded) FROM table_2589963_1 WHERE color = "Green and White"
|
CREATE TABLE table_2589963_1 (founded INTEGER, color VARCHAR)
|
What year was the school with green and white colors founded?
|
SELECT status FROM table_2589963_1 WHERE institution = "Informatics International College"
|
CREATE TABLE table_2589963_1 (status VARCHAR, institution VARCHAR)
|
What status of school is informatics international college?
|
SELECT COUNT(denominations__gold_weight_) FROM table_2592308_1 WHERE country = "Austria"
|
CREATE TABLE table_2592308_1 (denominations__gold_weight_ VARCHAR, country VARCHAR)
|
How many catagories for denominations does Austria have?
|
SELECT denominations__gold_weight_ FROM table_2592308_1 WHERE country = "China"
|
CREATE TABLE table_2592308_1 (denominations__gold_weight_ VARCHAR, country VARCHAR)
|
What are all the denominations for China?
|
SELECT name_of_award FROM table_25926120_7 WHERE name_of_film = "Sana Keithel"
|
CREATE TABLE table_25926120_7 (name_of_award VARCHAR, name_of_film VARCHAR)
|
what is the name of award when the name of film is sana keithel?
|
SELECT name_of_award FROM table_25926120_7 WHERE awardee_s_ = "Elangbam Natasha"
|
CREATE TABLE table_25926120_7 (name_of_award VARCHAR, awardee_s_ VARCHAR)
|
what is the name of award when the awardee(s) is elangbam natasha?
|
SELECT COUNT(cash_prize) FROM table_25926120_7 WHERE name_of_film = "Narmeen"
|
CREATE TABLE table_25926120_7 (cash_prize VARCHAR, name_of_film VARCHAR)
|
how many times is the name of film narmeen?
|
SELECT language FROM table_25926120_7 WHERE name_of_award = "Best Editing"
|
CREATE TABLE table_25926120_7 (language VARCHAR, name_of_award VARCHAR)
|
what is the language when the name of award is best editing?
|
SELECT awardee_s_ FROM table_25926120_7 WHERE name_of_award = "Best Agricultural Film"
|
CREATE TABLE table_25926120_7 (awardee_s_ VARCHAR, name_of_award VARCHAR)
|
who are the awardees when the name of award is best agricultural film?
|
SELECT language FROM table_25926120_7 WHERE awardee_s_ = "Re-recordist : Mateen Ahmad"
|
CREATE TABLE table_25926120_7 (language VARCHAR, awardee_s_ VARCHAR)
|
what is the language when the awardee is re-recordist : mateen ahmad?
|
SELECT MAX(jews_and_others_1) FROM table_25947046_1
|
CREATE TABLE table_25947046_1 (jews_and_others_1 INTEGER)
|
What is the highest Jews and others 1?
|
SELECT MIN(jews_and_others_1) FROM table_25947046_1 WHERE localities = 11
|
CREATE TABLE table_25947046_1 (jews_and_others_1 INTEGER, localities VARCHAR)
|
What is the lowest jews and others 1 for the localities 11?
|
SELECT arabs FROM table_25947046_1 WHERE annual_population_growth_rate = "1.7%"
|
CREATE TABLE table_25947046_1 (arabs VARCHAR, annual_population_growth_rate VARCHAR)
|
What is the arabs when the annual population growth rate is 1.7%?
|
SELECT MIN(total) FROM table_25947046_1 WHERE arabs = 4000
|
CREATE TABLE table_25947046_1 (total INTEGER, arabs VARCHAR)
|
What is the lowest total when arabs is 4000?
|
SELECT awardee_s_ FROM table_25926120_3 WHERE name_of_award = "Best Actress"
|
CREATE TABLE table_25926120_3 (awardee_s_ VARCHAR, name_of_award VARCHAR)
|
Who won best actress?
|
SELECT COUNT(cash_prize) FROM table_25926120_3 WHERE language = "Hindi" AND name_of_film = "Jodhaa Akbar"
|
CREATE TABLE table_25926120_3 (cash_prize VARCHAR, language VARCHAR, name_of_film VARCHAR)
|
How many cash prizes were given for the hindi language film jodhaa akbar?
|
Subsets and Splits
SQL Console for knowrohit07/know_sql
Finds questions in the dataset that contain the word 'god', providing a basic filtered view without much analytical insight.