Tagged Questions

Relational Algebra is an offshoot of first-order logic and of the algebra of sets that deals with relations (sets of tuples). In Computer Science, Relational Algebra is commonly used when dealing with databases. Operators in Relational Algebra use relations as operands and produce a relation as a result.

learn more… | top users | synonyms

18
votes
3answers
3k views

Aggregate Relational Algebra (Maximum)

I am currently working on a homework assignment that requires a selection to occur that pulls out an element containing a specific attribute of maximum value compared to all other records. I've read a ...
6
votes
4answers
1k views

How to find all pizzerias that serve every pizza eaten by people over 30?

I'm following the Stanford Database course and there's a question where we have Find all pizzerias that serve every pizza eaten by people over 30 using Relational Algebra only. The problem consist of ...
6
votes
2answers
277 views

Relational Algebra instead of SQL

I am studying relational algebra these days and I was wondering... Don't you thing it would be better if a compiler was existed which could compile relational algebra than compiling SQL? In which ...
6
votes
5answers
709 views

SQL Query theory question - single-statement vs multi-statement queries

When I write SQL queries, I find myself often thinking that "there's no way to do this with a single query". When that happens I often turn to stored procedures or multi-statement table-valued ...
6
votes
9answers
323 views

Why are positional queries bad?

I'm reading CJ Date's SQL and Relational Theory: How to Write Accurate SQL Code, and he makes the case that positional queries are bad — for example, this INSERT: INSERT INTO t VALUES (1, 2, 3) ...
4
votes
3answers
319 views

Difference between a theta join, equijoin and natural join

I'm having trouble understanding relational algebra when it comes to theta joins, equijoins and natural joins. Could someone please help me better understand it? If I use the = sign on a theta join is ...
4
votes
2answers
516 views

Clear explanation of the “theta join” in relational algebra?

I'm looking for a clear, basic explanation of the concept of theta join in relational algebra and perhaps an example (using SQL perhaps) to illustrate its usage. If I understand it correctly, the ...
4
votes
2answers
57 views

problem with select

I have a table with rows with two columns A 1 A 2 B 1 B 3 C 1 C 2 C 3 and I want to get from this only this ID(a,b or c) which has only 2 rows with value 1,2, so from this table I should get a, ...
4
votes
3answers
1k views

How to fetch distinct values with arel/relational algebra

I'm doing my best to bend my brain around arel and the relational algebra behind it, but how to represent a SELECT DISTINCT is consistently eluding my comprehension. Can anyone explain how to arel: ...
4
votes
8answers
1k views

Relational Databases and Mathematics?

Can anyone suggest resources that take a mathematical approach to relational databases? Essentially relational algebra I'd guess. I have a mathematics background and now work a great deal with ...
4
votes
7answers
222 views

Relations With No Attributes

Aheo asks if it is ok to have a table with just one column. How about one with no columns, or, given that this seems difficult to do in most modern "relational" DBMSes, a relation with no attributes?
4
votes
3answers
2k views

Is there set division in SQL?

I'm fully aware that set division can be accomplished through a series of other operations, so my question is: Is there a command for set division in SQL?
3
votes
1answer
87 views

Strange result from function — what's going on?

I'm using the join function from clojure.set. join with two parameters is supposed to do a natural join. Load it up: user=> (use 'clojure.set) nil This makes sense -- if either side of a join ...
3
votes
2answers
214 views

Unique constraint over multiple tables

Let's say we have these tables: CREATE TABLE A ( id SERIAL NOT NULL PRIMARY KEY ); CREATE TABLE B ( id SERIAL NOT NULL PRIMARY KEY ); CREATE TABLE Parent ( id SERIAL NOT NULL PRIMARY ...
3
votes
2answers
291 views

changing a sql view query into a relational alegbra?

i want to convert this sql query into relational alegbra, im new to this :)) sql query SELECT * FROM Library WHERE libName='florence' thanks :)) EDIT: i removed the view, becuase it would be the ...
3
votes
3answers
211 views

Relational Algebra

I was wondering if I could get some feedback on the relational algebra I have done and any advice on improving it also if you see anything wrong with my SQL could you possibly point it out. SELECT ...
2
votes
1answer
79 views

Relational Algebra: How does ∞ work?

Getting through some practice exam papers but in regards to the relational algebra I'm confused as to how the infinity symbol (∞) works in this example: π(pname(σ sid=123(Catalogue) ∞ Parts) Where ...
2
votes
1answer
104 views

What are recent advances in relational databases? [closed]

I'm wondering what are recent advances in relational database theory and related domains? I'm interested in new approaches, query languages (alternatives to SQL and/or extensions to it), products ...
2
votes
1answer
196 views

How to determine candidate keys from record schema and functional dependencies?

If I have a schema say R={A,B,C,D} and functional dependencies say {B->C, D->A} will my set of candidate keys be {B,D} or {BD}?
2
votes
1answer
509 views

What is the difference between Select and Project Operations

I'm referring to the basic relational algebra operators here. As I see it, everything that can be done with project can be done with select. I don't know if there is a difference or a certain ...
2
votes
2answers
836 views

How to fetch distinct values with arel/relational algebra and has_many :through

When I try to display all movies that a person is in, and they have more than 1 role (director,writer,actor) in a movie, I get multiple lines for that movie. If I add .select('DISTINCT id') or ...
2
votes
1answer
205 views

Different way of writing intersection in relational algebra

Using basic operators, derive the additional operator intersection. R ∩ S = ? I thought it might be: (R ∪ S) - ((R -S) ∪ (S -R)) but I also think there might be an easier way of doing it?
2
votes
2answers
307 views

SQL to Relational Algebra

How do I go about writing the relational algebra for this SQL query? Select patient.name, patient.ward, medicine.name, prescription.quantity, prescription.frequency ...
2
votes
1answer
509 views

subscript for a join (\bowtie) operation in LyX/LaTeX

I'm using LyX to write some Relational Algebra queries. I'm using the \bowtie symbol for the join operation but when I try to put a text in subscript directly under the symbol, I get the following ...
2
votes
2answers
461 views

Is my Relational Algebra correct?

I have a database assignment which I have to create some relational algebra for two problems. I feel fairly all right with the majority of it, but I just get confused when trying to project attributes ...
1
vote
1answer
28 views

Error when execute SQL query for relation algebra division in MySQL

I have 3 tables (provider, provider_has_product, product): (Original here: http://content.screencast.com/users/Maksold/folders/Jing/media/4e6de435-eeac-4602-95e0-2a1b0b4876ad/2012-01-18_0851.png) I ...
1
vote
3answers
79 views

Are there any open-source query-language agnostic relational storage engines?

I've been studying proper relational algebra, from Christopher Date's book Database in Depth: Relational Theory for Practitioners. Throughout the book he uses the language he and Hugh Darwen came up ...
1
vote
2answers
136 views

Equivalent of GroupBy and Having clause in Relational Algebra

I was doing an assignment where I had to convert SQL queries into Relational Algebra queries. I got stuck in converting the group by clause. Could anyone please tell me how the group by clause can be ...
1
vote
4answers
347 views

Converting aggregate operators from SQL to relational algebra

I have several SQL queries written that I want to convert to relational algebra. However, some of the queries use aggregate operators and I don't know how to convert them. Notably they use COUNT and ...
1
vote
2answers
58 views

Antijoins with Groovy Collections

This is probably a silly question however, is there a simple way of doing antijoins of collections in Groovy? I know there are [equivilent ways of doing unions and intersections]. My thought on ...
1
vote
5answers
139 views

Is it possible to write a SQL statement in plain assembly language processor-level code?

Just recently a friend suggested it is possible and achievable (though very difficult) to write a SQL statement in assembly code, since every programming operation eventually gets down to ...
1
vote
2answers
106 views

Is there any DBMS that does not rely upon SQL?

This topic is somewhat related to this question. There my answer was motivated by the assumption that SQL is necessary to access data in every database I know. AFAIK, whether you are directly ...
1
vote
1answer
395 views

SQL -> Relational Algebra

Suppose I have the following relations: Branch (branchNo(PK), street, city, postcode) Staff (staffNo(PK), fName, lName, sex, branchNo(FK)) Not that it matters for this question, but PK = primary ...
1
vote
1answer
271 views

Databases Relational algebra optimization

I'm trying to do some query optimization; taking an SQL query into relational algebra and optimizing it. My db tables schemas are as follow: Hills(MId, Mname, Long, Lat, Height, Rating,... ) ...
1
vote
2answers
200 views

Parser to parse Relational Algebras to T-Sql Codes and vice-versa

I now think about write a parser to parse Logical Expressions Relational Algebra to T-Sql Codes and vice-versa! Whether there is an parser to do this? Otherwise how can i do this? What is the basics ...
1
vote
2answers
341 views

SQL : Represent a subquery in relational algebra

How do I represent a subquery in relation algebra. Do I put the new select under the previous select condition. SELECT number FROM collection WHERE number = (SELECT anotherNumber FROM anotherStack); ...
1
vote
1answer
970 views

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?
1
vote
1answer
565 views

Rails3: how to use relational algebra to replace SQL-constructions like NOT and OUTER JOIN

There are two models Post and Comment. I should get all posts, which have no comments with specific tag. How can I do this using new Rails 3 features such relational algebra (arel). SQL-solution ...
1
vote
1answer
1k views

Help to translate SQL query to Relational Algebra

I'm having some difficulties with translating some queries to Relational Algebra. I've a great book about Database Design and here is a chapter about Relational Algebra but I still seem to have some ...
1
vote
1answer
62 views

Sorting based on the count in a related field in Django

I have two models, Image and Tag. Each Image object can have more than one Tag associated with it, and I want to find my most frequently used tags. How would I go about this? It seems easy enough but ...
1
vote
3answers
200 views

Python code for determining which normal form tabular data is in

I'm looking for Python code that can take tabular data and establish which normal form(s) it is in (if any) and show any functional dependencies, etc.
1
vote
3answers
325 views

Relational Algebra

This is not a homework problem... I'm studying on my own. If someone could explain to me what is going on here and how to solve this problem it would be greatly appreciated. Suppose relation R(A,B) ...
0
votes
0answers
9 views

Relational Algebra using winrdbi - count

i am studying relational algebra and i am using winrdbi to check if my queries are correct i am trying to get the count from a colum like this: q1:=count(tr_numb)(tree) however i keep getting an ...
0
votes
3answers
40 views

Convert SQL to Relational Algebra

Please can anyone help convert the SQL statement to Relational Algebra SELECT B.Town FROM Staff S, Branch B WHERE S.BranchId = B.BranchId AND S.lName='Pincher' AND S.fName='Penny
0
votes
1answer
54 views

relational algebra to SQL

Having this schema : Doctor(license_no, doctor_name, specialty) Patient(pat_id, pat_name, pat_address, pat_phone, date_of_birth) Visit(license_no, pat_id, date_of_visit, type, diagnosis, charge) ...
0
votes
3answers
60 views

How do I create a removable foreign key?

Basically the situation is like this (simplified, pseudo code): I have 2 TABLES person and country. Person table: KEY INT ID, STRING NAME, STRING COUNTRY Country table: KEY INT ID, STRING ...
0
votes
2answers
309 views

Convert SQL Query to Relational Algebra

I need some help converting an SQL query into relational algebra. Here is the SQL query: SELECT * FROM Customer, Appointment WHERE Appointment.CustomerCode = Customer.CustomerCode AND ...
0
votes
5answers
124 views

Can someone explain me how the cartesian product works in relational algebra

here it says Selection and cross product Cross product is the costliest operator to evaluate. If the input relations have N and M rows, the result will contain NM rows. Therefore it is very ...
0
votes
2answers
73 views

Are selection and projection associative?

Is selection(p)(projection(R)) == projection(selection(p)(R)) always?
0
votes
2answers
67 views

Set Properties: Irreflexivity and Transitivity

This is not homework but has a direct relation to my homework. In other words, I need to know this information to be able to do my homework. Is R transitive: R = {(a,b),(b,a),(c,c)}? I would think ...

1 2