Results

ARBQ
usageocountryearth1
usa'countrygeorge_washington_birth1
usa'military_officergeorge_washington1
usa'countryjohn_adams_birth1
usa'diplomatjohn_adams1
usa'countrythomas_jefferson_birth1
usa'diplomatthomas_jefferson1
usa'countryjames_madison_birth1
usa'secretary_of_statejames_madison1
usa'countryjames_monroe_birth1
usa'diplomatjames_monroe1
usa'countryjohn_quincy_adams_birth1
usa'diplomatjohn_quincy_adams1
usa'senatorjohn_quincy_adams1
usa'secretary_of_statejohn_quincy_adams1
usa'countryandrew_jackson_birth1
usa'military_officerandrew_jackson1
usa'senatorandrew_jackson1
usa'countrymartin_van_buren_birth1
usa'senatormartin_van_buren1
usa'countrywilliam_harrison_birth1
usa'military_officerwilliam_harrison1
usa'diplomatwilliam_harrison1
usa'countryjohn_tyler_birth1
usa'senatorjohn_tyler1
usa'countryjames_polk_birth1
usa'congressmanjames_polk1
usa'countryzachary_taylor_birth1
usa'military_officerzachary_taylor1
usa'countrymillard_fillmore_birth1
usa'congressmanmillard_fillmore1
usa'countryfranklin_pierce_birth1
usa'congressmanfranklin_pierce1
usa'senatorfranklin_pierce1
usa'military_officerfranklin_pierce1
usa'countryjames_buchanan_birth1
usa'senatorjames_buchanan1
usa'diplomatjames_buchanan1
usa'secretary_of_statejames_buchanan1
usa'countryabraham_lincoln_birth1
usa'congressmanabraham_lincoln1
usa'senatorabraham_lincoln1
usa'military_officerabraham_lincoln1
usa'countryandrew_johnson_birth1
usa'congressmanandrew_johnson1
usa'senatorandrew_johnson1
usa'countryulysses_grant_birth1
usa'military_officerulysses_grant1
usa'countryrutherford_hayes_birth1
usa'congressmanrutherford_hayes1
usa'countryjames_garfield_birth1
usa'military_officerjames_garfield1
usa'congressmanjames_garfield1
usa'countrychester_arthur_birth1
usa'countrygrover_cleveland_birth1
usa'countrybenjamin_harrison_birth1
usa'senatorbenjamin_harrison1
usa'military_officerbenjamin_harrison1
usa'countrywilliam_mckinley_birth1
usa'congressmanwilliam_mckinley1
usa'countrytheodore_roosevelt_birth1
usa'military_officertheodore_roosevelt1
usa'congressmantheodore_roosevelt1
usa'countrywilliam_taft_birth1
usa'solicitor_generalwilliam_taft1
usa'secretary_of_warwilliam_taft1
usa'countrywoodrow_wilson_birth1
usa'countrywarren_harding_birth1
usa'senatorwarren_harding1
usa'countrycalvin_coolidge_birth1
usa'vice_presidentcalvin_coolidge1
usa'countryherbert_hoover_birth1
usa'secretary_of_commerceherbert_hoover1
usa'countryfranklin_roosevelt_birth1
usa'assistant_secretary_of_the_navyfranklin_roosevelt1
usa'countryharry_truman_birth1
usa'senatorharry_truman1
usa'vice_presidentharry_truman1
usa'countrydwight_eisenhower_birth1
usa'military_officerdwight_eisenhower1
usa'countryjohn_kennedy_birth1
usa'senatorjohn_kennedy1
usa'congressmanjohn_kennedy1
usa'military_officerjohn_kennedy1
usa'countrylyndon_johnson_birth1
usa'senatorlyndon_johnson1
usa'congressmanlyndon_johnson1
usa'vice_presidentlyndon_johnson1
usa'countryrichard_nixon_birth1
usa'congressmanrichard_nixon1
usa'senatorrichard_nixon1
usa'vice_presidentrichard_nixon1
usa'countrygerald_ford_birth1
usa'congressmangerald_ford1
usa'vice_presidentgerald_ford1
usa'countryjames_carter_birth1
usa'military_officerjames_carter1
usa'countryronald_reagan_birth1
usa'countrygeorge_hw_bush_birth1
usa'congressmangeorge_hw_bush1
usa'cia_directorgeorge_hw_bush1
usa'vice_presidentgeorge_hw_bush1
usa'countrywilliam_clinton_birth1
usa'countrygeorge_w_bush_birth1
usa'air_force_reservistgeorge_w_bush1
usa'countrybarack_obama_birth1
usa'senatorbarack_obama1
usa'countrydonald_trump_birth1
usa'countryjoseph_biden_birth1
usa'senatorjoseph_biden1
usa'vice_presidentjoseph_biden1
usa'geostatevirginia1
usa'geostatemassachusetts1
usa'geostatesouth_carolina1
usa'geostatenew_york1
usa'geostatenorth_carolina1
usa'geostatenew_hampshire1
usa'geostatepennsylvania1
usa'geostatekentucky1
usa'geostateohio1
usa'geostatevermont1
usa'geostatenew_jersey1
usa'geostateiowa1
usa'geostatemissouri1
usa'geostatetexas1
usa'geostatecalifornia1
usa'geostatenebraska1
usa'geostategeorgia1
usa'geostateillinois1
usa'geostatearkansas1
usa'geostateconnecticut1
usa'geostatehawaii1

Code

Memelang:  usa qry.all

SQL:  WITH z0 AS (SELECT * FROM meme m0 WHERE m0.aid='usa' AND m0.qnt!=0) SELECT * FROM meme WHERE aid IN (SELECT aid FROM z0) UNION ALL SELECT bid AS aid, CONCAT("'", rid), aid as bid, qnt FROM meme WHERE bid IN (SELECT aid FROM z0) UNION ALL SELECT * FROM z0;

Memelang Demo

This is demonstration of translating Memelang to SQL for querying relational databases. See the PHP code in GitHub. A Python implementation is coming soon. Example queries:

Show all data in the database.

qry.all

All about George Washington.

george_washington

Who were children of the presidents?

.child

Which presidents were members of the Whig party?

.party:whig

Which presidents were born before 1820?

.birth.year:ad<1820

Which presidents attended Columbia and were lawyers?

.college:columbia .lawyer

Who were the spouses of the twentieth through thirtieth presidents?

.president_order>=20 .president_order<=30 .spouse

Which presidents did not have children?

.president_order .child=f

Use qry.all to return all memes related to the matching As.

.college:harvard .college:columbia qry.all

Get all about James Carter as well as Ronald Reagan.

james_carter; ronald_reagan

Which presidents were lawyers that attended Harvard or William and Mary?

.lawyer .college:harvard=t1 .college:william_and_mary=t1

What were the professions of the presidents?

?profession

What were the professions of George Washington?

george_washington?profession

Which presidents previously worked for New York state?

new_york'?profession

Which presidents has children that became presidents?

.child.president_order