şaloma
şaloma

Reputation: 411

relational algebra to SQL converter or vice versa

i would like to check if my relational algebra statements are correct, so is there a program out there that outputs relational algebra equivalent of an SQL query?

Upvotes: 2

Views: 3402

Answers (1)

nvogel
nvogel

Reputation: 25526

I don't know of one. There isn't a relational algebra equivalent of every SQL query and not every RA expression has an equivalent in SQL.

You might want to check out Rel which is based on Tutoral D - a truly relational language much more like the RA.

Upvotes: 2

Related Questions