Need resources for ER diagram and SQL

Click For Summary
The discussion centers on the challenges of creating ER diagrams and relational models for SQL databases, highlighting the difficulty of translating written descriptions into ER diagrams. Participants express a need for resources to improve their understanding of these concepts. There is a focus on SQL queries, particularly the logic behind various join types (left join, right join, inner join) and the use of the WHERE clause. Clarification is sought on how to correctly reference columns from multiple tables in queries, especially when they share similar names. The conversation emphasizes the importance of practical experimentation with SQL queries to solidify understanding, particularly regarding how to filter results based on conditions applied to paired rows from different tables.
late347
Messages
300
Reaction score
15
I have a gut feeling that I will retake a test about these subjects.

Do you know good resources about creating ER diagram and relational model for database (sql database primarily)

Sometimes even creating a correct ER Diagram (chen notation) feels difficult and confusing. These type of homework problems have been things like word problems where we must construvt the ER diagram from a short written description.

For relational model... I think I can create relational model when I have the correctly defined ER diagram from which to begin work...

I think I could also use some resources for SQL queries but I do know already some basic queries. I studied some basic queries at w3school and I took the quiz about SQL but still I don't really have good enough understanding for a test at our school.

But I don't quite fully understand the logic begind the queries. Especially
Left join, right join, aliases, inner join,

And the logic begind the where operator in SQL queries is a little bit fuzzy to me. Especially if you somehow combine multiple tables in a query. How are you supposed to know which fields(?) Are equal to which fields in let's say two tables...?
 
Technology news on Phys.org
late347 said:
And the logic begind the where operator in SQL queries is a little bit fuzzy to me. Especially if you somehow combine multiple tables in a query. How are you supposed to know which fields(?) Are equal to which fields in let's say two tables...?

This is about WHERE syntax, right?

For example, when you have 2 tables and you run this query:
Code:
SELECT * FROM TABLE1, TABLE2

you'll get the output rows, which each made of every row in TABLE1 paired with every row in TABLE2.

So when you run another query like this:
Code:
SELECT * FROM TABLE1, TABLE2
WHERE COLUMN_A = COLUMN_B

basically it'll give you the same result as previous query, except that it checks that in every row, the paired ones have two column values that are equal.

My suggestion is, try it out! It'll make more sense.
 
shadowshed said:
This is about WHERE syntax, right?

For example, when you have 2 tables and you run this query:
Code:
SELECT * FROM TABLE1, TABLE2

you'll get the output rows, which each made of every row in TABLE1 paired with every row in TABLE2.

So when you run another query like this:
Code:
SELECT * FROM TABLE1, TABLE2
WHERE COLUMN_A = COLUMN_B

basically it'll give you the same result as previous query, except that it checks that in every row, the paired ones have two column values that are equal.

My suggestion is, try it out! It'll make more sense.
What do you mean by column a and column b.

In which table is what column?Okay when you press select * from table1,table2;That means that your result is everything from both of the tables...
 
I mean TABLE1.COLUMN_A and TABLE2.COLUMN_B
 
shadowshed said:
I mean TABLE1.COLUMN_A and TABLE2.COLUMN_B

okay since you now changed the query.

I know that select portion chooses those columns which we want in the result. Eg.

select name,age from table1;
this kind of query would probably show in the results, the name column and the age column from that table1.

my understanding is that in the from portion. It is required that you select some column, which actually exists in that table where from you are selecting.
If you have generalized column names such as "name" such that for example...
name column appears in table1, and also in table2.
Then you get an error if you simply select using "name ". My understanding is that you need to specify it further such as...

select table1.name, table2.name from table1, table2;
This query would select both each name column from table1 and table2

basically it'll give you the same result as previous query, except that it checks that in every row, the paired ones have two column values that are equal.

My suggestion is, try it out! It'll make more sense.

that was a little bit confusing. What are the "paired ones" ?
Which exact things are equal to each other?
 
late347 said:
okay since you now changed the query.

I know that select portion chooses those columns which we want in the result. Eg.

select name,age from table1;
this kind of query would probably show in the results, the name column and the age column from that table1.

my understanding is that in the from portion. It is required that you select some column, which actually exists in that table where from you are selecting.
If you have generalized column names such as "name" such that for example...
name column appears in table1, and also in table2.
Then you get an error if you simply select using "name ". My understanding is that you need to specify it further such as...

select table1.name, table2.name from table1, table2;
This query would select both each name column from table1 and table2

Yes, you are correct.
that was a little bit confusing. What are the "paired ones" ?
Which exact things are equal to each other?

Hmm, what I call as "paired ones" are table1's rows X table2's rows.
I believe you noticed that when you tried it before.

So in the second query, we added a constraint WHERE TABLE1.COLUMN_A = TABLE2.COLUMN_B. The query executes the SELECT function first, and then it checks on every row, filtering out rows that doesn't match the constraint.

If you still quite don't get it, try to play and run it.
 
Learn If you want to write code for Python Machine learning, AI Statistics/data analysis Scientific research Web application servers Some microcontrollers JavaScript/Node JS/TypeScript Web sites Web application servers C# Games (Unity) Consumer applications (Windows) Business applications C++ Games (Unreal Engine) Operating systems, device drivers Microcontrollers/embedded systems Consumer applications (Linux) Some more tips: Do not learn C++ (or any other dialect of C) as a...

Similar threads

  • · Replies 5 ·
Replies
5
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 7 ·
Replies
7
Views
4K
  • · Replies 5 ·
Replies
5
Views
2K
Replies
7
Views
2K
  • · Replies 13 ·
Replies
13
Views
3K
  • · Replies 37 ·
2
Replies
37
Views
3K
  • · Replies 28 ·
Replies
28
Views
7K