0
votes
3answers
27 views
Left Joins that link to multiple rows only returning one
I'm trying to join two table (call them table1 and table2) but only return 1 entry for each match. In table2, there is a column called 'current' that is either 'y', 'n', or 'null'. I have left …
2
votes
5answers
55 views
mysql newbie - joining
I have a table of movies and a table of votes. Users vote for movies they like.
I need to display the list of movies descending on the total votes for the movie.
What I have now sort of works. The …
0
votes
1answer
56 views
Joining excel sheets in Java
Hello,
I have two Excel Sheets (say, A and B), and I want to accomplish something similar to a full outer join between them in Java. For instance, suppose the sheets have the following data:
Sheet A
…
1
vote
6answers
114 views
Understanding join()
Suppose a thread A is running. I have another thread, B, who's not. B has been started, is on runnable state.
What happens if I call: B.join()?
Will it suspend the execution of A or will it wait for …
0
votes
2answers
29 views
C# WPF SQL SELECT INNER JOIN
Im trying to join a user table to retrieve the users login name.
I wish to have TWO INNER joins one for CreatedByUser_loginname and ModifiedByUser_loginname
But at the moment Im just trying to get …
1
vote
3answers
59 views
Linq, emulating joins, and the Include method
Hello,
I'm looking into an issue that is related to...
http://stackoverflow.com/questions/416847/join-and-include-in-entity-framework
Basically the following query returns the list of "Property" …
0
votes
1answer
24 views
MySQL join problem
I want to join a pages table and menu table.
CREATE TABLE IF NOT EXISTS `pages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`keywords` varchar(255) NOT NULL …
1
vote
5answers
70 views
What does this SQL code (joining on the same view twice) do?
I'm working my way through this explanation of Common Table Expressions at MSDN and I came across the code reproduced below. Can anyone explain to me what it does and how it does it?
I'm pretty sure …
-4
votes
1answer
85 views
How might I improve the execution time of my join-heavy query?
I am joining multiple tables in a MySQL query, and the execution of this query is very slow. I badly need to improve the execution time!
I did some optimization, but still it loads slowly. Any …
1
vote
3answers
64 views
Comparing SQL Table to itself (Self-join)
I'm trying to find duplicate rows based on mixed columns. This is an example of what I have:
CREATE TABLE Test
(
id INT PRIMARY KEY,
test1 varchar(124),
test2 varchar(124)
)
INSERT INTO …
1
vote
2answers
28 views
Update a table with records from another table
I am trying to update my table 1 with some field value from table 2 based on a condition. But am unable to get the proper query. Here's the condition:
I have a table 1 with date field which should be …
1
vote
3answers
40 views
How to create a mysql query for the following?
I have the following query:
SELECT m.*, COUNT(c.chapter_nr) as chapters, MAX(c.chapter_nr) as latest_chapter
FROM comic_series AS m
JOIN chapters as c on c.comic_id = m.id
WHERE m.title_en = 'test'
…
0
votes
4answers
66 views
SQL join that displays left table even if right table doesn’t match where
I have 2 tables, defined as such:
CREATE TABLE `product` (
`pid` SMALLINT( 5 ) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
`name` VARCHAR( 50 ) NOT NULL,
`description` TEXT,
`qty` SMALLINT( 5 ) …
2
votes
3answers
67 views
SQL Join vs Separate Query in Code without Join - Performance
I would like to know if there's a really performance gain between those two options :
Option 1 :
I do a SQL Query with a join to select all User and their Ranks.
Option 2 :
I do one SQL Query …
0
votes
1answer
35 views
MySQL Join from multiple options to select one value
I am putting together a nice little database for adding values to options, all these are setup through a map (Has and Belongs to Many) table, because many options are pointing to a single value.
So I …
