You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A SQL interpreter in Java that can handle SELECT-FROM-WHERE queries. Implemented in-memory sort and external merge sort algorithms in case where the relations were too big to be stored in memory. Queries involving joins use tuple nested loop join, page nested loop join and sort-merge join.