Results

ARBQ
john_tylerbirthjohn_tyler_birth1
john_tylerchildanna_tyler1
john_tylerchildaugusta_tyler1
john_tylerchilddavid_gardiner_tyler1
john_tylerchildelizabeth_tyler1
john_tylerchildjohn_alexander_tyler1
john_tylerchildjohn_tyler_jr1
john_tylerchildletitia_tyler1
john_tylerchildlyon_gardiner_tyler1
john_tylerchildmary_tyler1
john_tylerchildpearl_tyler1
john_tylerchildrobert_tyler1
john_tylercollegewilliam_and_mary1
john_tylerdeathjohn_tyler_death1
john_tylerelectedpresidential_election_18411
john_tylergovernorvirginia1
john_tylerlawyervarious1
john_tylerpartywhig1
john_tylerpresident_orderfirst10
john_tylersenatorusa1
john_tylerspousejulia_gardiner_tyler1
john_tylerspouseletitia_christian_tyler1
john_tylertermlengthyear3

Code

Memelang:  john_tyler qry.all

SQL:  WITH z0 AS (SELECT * FROM meme m0 WHERE m0.aid='john_tyler' 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