Results

ARBQ
george_washington_birthstatevirginia1
john_adams_birthstatemassachusetts1
thomas_jefferson_birthstatevirginia1
james_madison_birthstatevirginia1
james_monroe_birthstatevirginia1
john_quincy_adams_birthstatemassachusetts1
andrew_jackson_birthstatesouth_carolina1
martin_van_buren_birthstatenew_york1
william_harrison_birthstatevirginia1
john_tyler_birthstatevirginia1
james_polk_birthstatenorth_carolina1
zachary_taylor_birthstatevirginia1
millard_fillmore_birthstatenew_york1
franklin_pierce_birthstatenew_hampshire1
james_buchanan_birthstatepennsylvania1
abraham_lincoln_birthstatekentucky1
andrew_johnson_birthstatenorth_carolina1
ulysses_grant_birthstateohio1
rutherford_hayes_birthstateohio1
james_garfield_birthstateohio1
chester_arthur_birthstatevermont1
grover_cleveland_birthstatenew_jersey1
benjamin_harrison_birthstateohio1
william_mckinley_birthstateohio1
theodore_roosevelt_birthstatenew_york1
william_taft_birthstateohio1
woodrow_wilson_birthstatevirginia1
warren_harding_birthstateohio1
calvin_coolidge_birthstatevermont1
herbert_hoover_birthstateiowa1
franklin_roosevelt_birthstatenew_york1
harry_truman_birthstatemissouri1
dwight_eisenhower_birthstatetexas1
john_kennedy_birthstatemassachusetts1
lyndon_johnson_birthstatetexas1
richard_nixon_birthstatecalifornia1
gerald_ford_birthstatenebraska1
james_carter_birthstategeorgia1
ronald_reagan_birthstateillinois1
george_hw_bush_birthstatemassachusetts1
william_clinton_birthstatearkansas1
george_w_bush_birthstateconnecticut1
barack_obama_birthstatehawaii1
donald_trump_birthstatenew_york1
joseph_biden_birthstatepennsylvania1

Code

Memelang:  .state

SQL:  SELECT * FROM meme m0 WHERE m0.rid='state' AND m0.qnt!=0;

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