active questions tagged join - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T22:14:12Z http://stackoverflow.com/feeds/tag/join http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1813678/how-do-i-create-an-absolute-url-from-two-components-in-perl 1 How do I create an absolute URL from two components, in Perl? Geo 2009-11-28T20:21:08Z 2009-11-28T21:25:40Z <p>Suppose I have:</p> <pre><code>my $a = "http://site.com"; my $part = "index.html"; my $full = join($a,$part); print $full; &gt;&gt; http://site.com/index.html </code></pre> <p>What do I have to use as <code>join</code>, in order to get my snippet to work?</p> <p>EDIT: I'm looking for something more general. What if <code>a</code> ends with a slash, and <code>part</code> starts with one? I'm sure in some module, someone has this covered.</p> http://stackoverflow.com/questions/1813285/linq-query-across-three-levels-of-tables-to-generate-sum 1 Linq query across three levels of tables to generate sum ChrisW 2009-11-28T18:23:09Z 2009-11-28T18:52:34Z <p>I have a series of tables that are joined with Primary Key/Foreign Key relationships. I have a table of Transactions, and each Transaction references one and only one Product. Each product can exist in one and only one Category:</p> <pre> <code> Categories Products Transactions ------------- ------------- ----------------- CategoryId ProductId TransactionId CategoryName CategoryId ProductId CategoryName TransactionAmount </code> </pre> <p>I'm just learning LinqToSql, and I've used lambda expressions to access the Products in each category (x => x.Products). But what I'm trying to do is access the Transactions table, specifically to get a sum of all transactions by category.</p> <p>I'm sure I could do this by creating manual Joins in my Linq statement. But it doesn't seem like I should have to do this, since all of my tables are joined as PF/FK in the model.</p> <p>Can anyone offer an example of how to get started?</p> http://stackoverflow.com/questions/1772609/procedurally-transform-subquery-into-join 1 Procedurally transform subquery into join fatcat1111 2009-11-20T19:04:25Z 2009-11-27T23:48:27Z <p>Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a syntactically correct SQL query statement containing a subquery that results in a functionally equivalent statement without a subquery? If so, what are they (i.e., what's the algorithm), and in what cases do they not apply? </p> http://stackoverflow.com/questions/1805698/php-pdo-mysql-join 0 PHP PDO MYSQL JOIN Andy 2009-11-26T21:19:31Z 2009-11-27T13:18:57Z <p>I have a table called cms_page in which each page has an ID. I want to pull all the information from this table and all the information from cms_page_part table where page_id is equal to the ID i send to the page...confusing i know but here is my attempt:</p> <pre><code>require '../../config.php'; $conn = new PDO(DB_DSN, DB_USER, DB_PASS); $id = (int)$_GET['id']; //$q = $conn-&gt;query("SELECT * FROM cms_page WHERE id=$id"); $q = $conn-&gt;query("SELECT cms_page.id, cms_page.title, cms_page.slug, cms_page_part.* FROM cms_page LEFT JOIN cms_page_part ON cms_page_part.page_id=cms_page.id WHERE cms_page.id = $id"); $project = $q-&gt;fetch(PDO::FETCH_ASSOC); </code></pre> <p>Any help figuring out how to join these would be appreciated.</p> http://stackoverflow.com/questions/1435177/why-does-this-sql-code-give-error-1066-not-unique-table-alias-user 0 Why does this sql code give error 1066 (Not unique table/alias: 'user')? neobeacon 2009-09-16T20:07:14Z 2009-11-27T03:28:49Z <p>This is my table structure.</p> <p><img src="http://img6.imageshack.us/img6/8730/articlek.jpg" alt="alt text" /></p> <p>This is my code,This give error: #1066 - Not unique table/alias: 'user'</p> <pre><code>SELECT article.* , section.title, category.title, user.name, user.name FROM article INNER JOIN section ON article.section_id = section.id INNER JOIN category ON article.category_id = category.id INNER JOIN user ON article.author_id = user.id LEFT JOIN user ON article.modified_by = user.id WHERE article.id = '1' </code></pre> http://stackoverflow.com/questions/1802636/most-concise-and-complete-recursive-association-support-in-cakephp 1 Most concise and complete Recursive Association Support in CakePHP? mensch 2009-11-26T09:43:06Z 2009-11-27T02:47:49Z <p>I'm currently mucking about with CakePHP, deciding if I'll use it in an upcoming web application.</p> <p>The problem is, I've got several tables which at some point share relevant data with each other. If I were to write all the code myself I would use an SQL query using rather a lot of different joins and subqueries. But from what I understand CakePHP only supports joins between two tables.</p> <p>So for example, I have Users, Profile, Rank, Rating tables and I want to get the profile, rank and ratings of one particular user. CakePHP will do the trick by using multiple, separate SELECT statements. But this would be possible using one query with multiple joins. Performance is expected to be quite important, so not being too wasteful with SQL queries is a major perquisite.</p> <p>I've found two hacks (<a href="http://lloydhome.com/blog/development/2009/recursive-association-support-cakephp-12" rel="nofollow">one behaviour</a> and <a href="http://mark-story.com/posts/view/using-bindmodel-to-get-to-deep-relations" rel="nofollow">one using bindModel</a>) and <a href="http://stackoverflow.com/questions/806650/in-cakephp-how-to-retrieve-joined-result-from-multiple-tables">a similar StackOverflow thread</a>.</p> <p>I'm undecided whether to use the behaviour or the bindModel hack. Could anybody shed any light as to what is the best approach - viz. what integrates best in the overall CakePHP structure (are features like pagination still available)? Or is there another approach which is ultimately better. The SO thread mentions a method using containables.</p> <p>Hope I'm not wrong in opening a separate question for this, but the older thread lists some solutions, but the answer isn't that clear to me for the aforementioned reasons.</p> http://stackoverflow.com/questions/1804704/java-jpa-inner-join-with-where-statement 0 Java JPA Inner JOIN with WHERE statement Marco 2009-11-26T16:40:53Z 2009-11-26T16:57:31Z <p>Hi folks,</p> <p>I want to annotate following structure:</p> <p>I have this query:</p> <pre> <code> SELECT A.*, BES.*, BES_2.* INNER JOIN BES ON A.a = BES.a AND A.b = BES.b INNER JOIN BES AS BES_2 ON A.a = BES_2.a AND A.b = BES_2.b WHERE (BES.c = N'foo') AND (BES_2.c = N'bar') </code> </pre> <p>I have the entities Job (representing A) and JobEndPoint (representing BES). The Job object should contain two JobEndPoint which map like a one-to-one relation. I need two JOIN the table two times checking for the same values only differed by the column "c" which I check in the WHERE statement.</p> <pre> <code> @OneToOne private JobEndPoint from; @OneToOne private JobEndPoint to; </code> </pre> <p>My problem is now that the database columns and the object fields differ a lot and I don't know how to add the WHERE statement.</p> <p>Thanks a lot if anyone can help!</p> <p>Marco</p> http://stackoverflow.com/questions/1802199/table-join-where -1 table join where shuc 2009-11-26T08:04:50Z 2009-11-26T09:37:39Z <p>Table1 t10 (id)</p> <pre><code>id --- 1 2 </code></pre> <p>table t11(a1,a2,a3)</p> <pre><code>a1 a2 a3 ---------- 1 10 a 1 10 b 1 11 b 1 12 c 2 20 d 2 21 e </code></pre> <p>select * from t10 a,t11 b where a.id = b.a1 how to display</p> <pre><code>id a1 a2 a3 -------------- 1 1 10 a 1 1 10 b //(not display this row) 1 1 11 b //(not display this row) 1 1 12 c //(not display this row) 2 2 20 d 2 2 21 e //(not display this row) </code></pre> <p>just get t11's random row</p> <pre><code>maybe display this id a1 a2 ---------- 1 1 11 b 1 1 10 a //(not display this row) 1 1 10 b //(not display this row) 1 1 12 c //(not display this row) 2 2 20 2 2 21 //(not display this row) </code></pre> http://stackoverflow.com/questions/1798897/mysql-what-join-should-i-use-2-tables-not-the-same-number-of-members 0 MySQL - What JOIN should i use? 2 Tables, Not the same number of members Pizza Overflow 2009-11-25T18:12:01Z 2009-11-25T18:30:48Z <p>so i have 2 tables: -char (keeps information about the player) -special (its a rank for top mobs, so each line from this table is a record of all the players that killed a mob and the total time)</p> <p>here's a summary i wrote:</p> <pre><code>################## ## table char: ## ################# `char_id` - int(12) auto increment - primary key `type` - varchar(18) `color` - varchar(16) --------------------------------------------------- ##################### ## table special: ## ##################### `id` - auto increment - primary key - just for keeping a number of events `name` - varchar(24) `time` - int(12) - the time the char's spent to kill the mob `member1_id`- here is the char_id, it goes from 1 to 20 (until member20_id) its a int(12), default is '0', so if there's only 3 members i would have something like: `member1_id` = 1111111 `member2_id` = 2222222 `member3_id` = 1113123 `member4_id` = 0 (same for the rest) --------------------------------------------------- </code></pre> <p>i want to show every char from the member1_id, member2_id, memberN_id (a reminder: some values have 0 in member_id because there's no player, so no data to show) and order by TIME</p> <p>here's a example:</p> <pre><code>Mob rank: 1 - Name: XYZ Guild - Time: 3 minutes Member 1: 1111111 - Type: soldier - Color: blue Member 2: 2222222 - Type: soldier - Color: red 2- Name: The FOO Guild - Time: 19 minutes Member 1: 238381 - Type: Noob - Color: green Member 2: 4444444 - Type: soldier - Color: red Member 3: 549595 - Type: soldier - Color: green </code></pre> <p>the main thing its about the type of JOIN i should use, im kind like confused of how i can only get the data from where member_id is not 0 and also order by the TIME from SPECIAL</p> <p>thank you very much</p> http://stackoverflow.com/questions/1797778/oracle-join-using-subquery-ora-00904-string-invalid-identifier 2 Oracle JOIN USING + Subquery : ora-00904 string: invalid identifier guigui42 2009-11-25T15:39:47Z 2009-11-25T17:53:54Z <p>Hi,</p> <p>i m having a little syntax problem in my query (simplified) :</p> <pre><code>select * from table1 t1 inner join table2 t2 using (pk1) inner join table3 t3 using (pk2) where not exists (select1 from table4 t4 where t4.pk1 = t1.pk1) </code></pre> <p>By using the "using" keyword, oracle doesnt allow table identifier in front of the column name (eg : t1.pk1, only pk1 can be used)</p> <p>If i write :</p> <pre><code>select * from table1 t1 inner join table2 t2 using (pk1) inner join table3 t3 using (pk2) where not exists (select1 from table4 t4 where t4.pk1 = pk1) </code></pre> <p>This query will not give the expected results.</p> <p>But since i am using an "exists" subquery, how can i join this subquery ?</p> <p>Of course, i suppose i could write this query another way and avoid the exists, or i could NOT use "using".</p> <p>But is it possible to have "join / using" combined with a subquery in the where clause ?</p> <p>Edit : using Oracle 10gR2</p> http://stackoverflow.com/questions/1798110/db2-varchar-index-join 0 DB2 varchar index join Clarkey 2009-11-25T16:21:42Z 2009-11-25T16:21:42Z <p>For DB2...</p> <p>table1.a is varchar(30) and has an index on it. table2.b is varchar(45) and has an index on it.</p> <p>Will <code>table1.a = table2.b</code> use the index on table1, table2, or both?</p> <p>Although it would seem obvious that it should use both indexes, I'm asking because I believe on sybase, this would only use one of the indexes (I'm not sure which one).</p> <p>I fully intend to test this out, but I am unable to presently.</p> http://stackoverflow.com/questions/1796958/ms-reporting-services-columns-from-datasource-in-one-textbox 0 MS Reporting Services - columns from DataSource in one Textbox Nidzo 2009-11-25T13:37:46Z 2009-11-25T13:37:46Z <p>I have the DataSource which returns columns ItemsName and I need to join these all names into one Textbox.</p> <p>The output should look like:</p> <p>"ItemName1, ItemName2", ItemName3, ..."</p> <p>I cannot figure out how use =Join() to do that. Thank you for any help.</p> http://stackoverflow.com/questions/1780372/calculating-from-self-join 0 Calculating from self-join Martin Stein 2009-11-22T23:16:19Z 2009-11-24T22:24:38Z <p>I have a list of values and dates for stock ticker symbols and want to calculate quarterly returns in SQL. </p> <pre><code>CREATE TABLE `symbol_details` ( `symbol_header_id` INT(11) DEFAULT NULL, `DATE` DATETIME DEFAULT NULL, `NAV` DOUBLE DEFAULT NULL, `ADJ_NAV` DOUBLE DEFAULT NULL) </code></pre> <p>For fixed quarter start and end dates that works fine:</p> <pre><code>set @quarterstart='2008-12-31'; set @quarterend='2009-3-31'; select sha, (100*(aend-abegin)/abegin) as q1_returns from (select symbol_header_id as sha, ADJ_NAV as abegin from symbol_details where date=@quarterstart) as a, (select symbol_header_id as she, ADJ_NAV as aend from symbol_details where date=@quarterend) as b where sha=she; </code></pre> <p>This calculates all quarterly returns for all symbols. Sometimes that end of the quarter is a non-trading day, or the stock ceased operation, so I want to get the closest start and end dates to the quarter start and end dates.</p> <p>The solution would be to somehow get only the one start and one end of quarter value for each symbol_header_id by some GROUP BY statement, like (1)</p> <pre><code>SET @quarterstart = '2009-03-01'; SET @quarterend = '2009-4-31'; SELECT symbol_header_id, DATE, ADJ_NAV AS aend FROM symbol_details WHERE DATE BETWEEN @quarterstart AND @quarterend AND symbol_header_id BETWEEN 18540 AND 18550 GROUP BY symbol_header_id asc; </code></pre> <p>This gives the ADJ_NAV value for the date closest to the start of the quarter for each of the symbol_header_id values.</p> <p>So finally, (2)</p> <pre><code>SET @quarterstart = '2008-12-31'; SET @quarterend = '2009-3-31'; SELECT sh1, a.date, b.date, aend, abegin, (100*(aend-abegin)/abegin) AS quarter_returns FROM (SELECT symbol_header_id sh1, DATE, ADJ_NAV AS abegin FROM symbol_details WHERE DATE BETWEEN @quarterstart AND @quarterend GROUP BY symbol_header_id DESC) a, (SELECT symbol_header_id sh2, DATE, ADJ_NAV AS aend FROM symbol_details WHERE DATE BETWEEN @quarterstart AND @quarterend GROUP BY symbol_header_id ASC) b WHERE sh1 = sh2; </code></pre> <p>should calculate the quarterly returns for each symbols.</p> <p>Unfortunately this does not work. For some reason when I restrict the IDs like in (1) the correct start and end dates are used, but when the "AND symbol_header_id BETWEEN 18540 AND 18550" statements are removed, the same start and end dates come up. Why????</p> <p>The answer with unrolled JOINs is:</p> <pre><code>SET @quarterstart = '2008-12-31'; SET @quarterend = '2009-3-31'; SELECT tq.sym AS sym, (100*(alast.adj_nav - afirst.adj_nav)/afirst.adj_nav) AS quarterly_returns FROM -- First, determine first traded days ("ftd") and last traded days -- ("ltd") in this quarter per symbol (SELECT symbol_header_id AS sym, MIN(DATE) AS ftd, MAX(DATE) AS ltd FROM symbol_details WHERE DATE BETWEEN @quarterstart AND @quarterend GROUP BY 1) tq JOIN symbol_details afirst -- Second, determine adjusted NAV for "ftd" per symbol (see WHERE) ON afirst.DATE BETWEEN @quarterstart AND @quarterend AND afirst.symbol_header_id = tq.sym JOIN -- Finally, determine adjusted NAV for "ltd" per symbol (see WHERE) symbol_details alast ON alast.DATE BETWEEN @quarterstart AND @quarterend AND alast.symbol_header_id = tq.sym WHERE afirst.date = tq.ftd AND alast.date = tq.ltd; </code></pre> http://stackoverflow.com/questions/1792850/mysql-join-two-tables-with-different-number-of-rows-and-one-same-column-name 0 MySQL: Join two tables with different number of rows and one same column name pit777 2009-11-24T20:53:16Z 2009-11-24T21:07:53Z <p>Hi,</p> <p>i have two tables "*TABLE_A*" and "*TABLE_B*",</p> <p>and i want to connect them the same way like in "*RESULT_TABLE*".</p> <p><strong>TABLE_A:</strong></p> <pre><code>+-----------+-----------+---------+ | row_id | category | val_1 | +-----------+-----------+---------+ | 1067 | cat1 | 6.5 | | 2666 | test | 6.5 | | 2710 | cat1 | 2.1 | | 2710 | test | 7.1 | | 2767 | test | 3 | | 71142 | cat1 | 5 | | 50666 | other | 6.5 | | 71142 | other | 1 | | 345342 | cat1 | 6.5 | | 345342 | test | 2.8 | +-----------+-----------+---------+ </code></pre> <p><strong>TABLE_B:</strong></p> <pre><code>+-----------+-----------+ | row_id | val_2 | +-----------+-----------+ | 1067 | 2.0 | | 2666 | 9 | | 2701 | 2.2 | | 2708 | 1 | | 2709 | 6.5 | | 2710 | 5.2 | | 2765 | 6.5 | | 2766 | 15 | | 2767 | 8 | | 71142 | 5 | | 2783 | 4.5 | | 50666 | 6.5 | | 101588 | 9 | | 101588 | 3 | | 3452 | 8.0 | | 23422 | 5 | | 345342 | 6.5 | +-----------+-----------+ </code></pre> <p><strong>RESULT_TABLE:</strong></p> <pre><code>+-----------+-----------+-----------+------------+ | row_id | val_2 | val_1 | category | +-----------+-----------+-----------+------------+ | 1067 | 2.0 | 6.5 | cat1 | | 2666 | 9 | 6.5 | test | | 2701 | 2.2 | 2.2 | NULL | | 2708 | 1 | 1 | NULL | | 2709 | 6.5 | 1 | NULL | | 2710 | 5.2 | 2.1 | cat1 | | 2710 | 5.2 | 7.1 | test | | 2765 | 6.5 | 1 | NULL | | 2766 | 15 | 1 | NULL | | 2767 | 8 | 3 | test | | 71142 | 5 | 5 | cat1 | | 71142 | 5 | 1 | other | | 2783 | 4.5 | 1 | NULL | | 50666 | 6.5 | 6.5 | other | | 101588 | 9 | 1 | NULL | | 101588 | 3 | 1 | NULL | | 3452 | 8.0 | 1 | NULL | | 23422 | 5 | 1 | NULL | | 345342 | 6.5 | 6.5 | cat1 | | 345342 | 6.5 | 2.8 | test | +-----------+-----------+-----------+------------+ </code></pre> <p>I try to use something like this:</p> <pre><code>SELECT TABLE_A.row_id, TABLE_A.category, TABLE_A.val_1, TABLE_B.val_2 FROM TABLE_A INNER JOIN TABLE_B ON TABLE_B.row_id = TABLE_A.row_id ORDER BY row_id; </code></pre> <p>but in result i only get the rows what "row_id" exist in TABLE_A.</p> <p><strong>Is there way to connect "TABLE_A" and "TABLE_B" and in result get the same like in RESULT_TABLE?</strong></p> http://stackoverflow.com/questions/1784668/multi-join-linq-statement 0 Multi Join Linq Statement Refracted Paladin 2009-11-23T17:25:20Z 2009-11-23T23:36:29Z <p>Is this the proper way to accomplish joining 3 (<em>or more</em>) tables with LINQ (<em>to SQL</em>)? Especially the <code>select</code> portion. Am I on the right track to return a single record(<em>row</em>) of data that spans across the tables?</p> <pre><code> public static DataTable GetCurrentEmploymentQuestionnaire(Guid employmentQuestionnaireID) { var Questionnaire = from employmentQuestionnaire in context.tblEmploymentQuestionnaires join prevocService in context.tblEmploymentPrevocServices on employmentQuestionnaire.PrevocServicesID equals prevocService.EmploymentPrevocID join jobDevelopmetService in context.tblEmploymentJobDevelopmetServices on employmentQuestionnaire.JobDevelopmentServicesID equals jobDevelopmetService.JobDevelopmentServicesID where employmentQuestionnaire.EmploymentQuestionnaireID == employmentQuestionnaireID select new { EmploymentQuestionnaireID = employmentQuestionnaire.EmploymentQuestionnaireID, PlanID = employmentQuestionnaire.PlanID, HasCommunityJob = employmentQuestionnaire.CommunityJob, HasPrevocServices = employmentQuestionnaire.PrevocServices, HasJobDevelopmentServices = employmentQuestionnaire.JobDevelopmentServices, WhoCreated = employmentQuestionnaire.InsertUser, WhenCreated = employmentQuestionnaire.InsertDate, WhoUpdated = employmentQuestionnaire.UpdateUser, WhenUpdated = employmentQuestionnaire.UpdateDate, AvgRatePay = prevocService.AvgRatePay, AvgHoursWeek = prevocService.AvgHoursWeek, PrevocGoal = prevocService.PrevocGoal, SkillsTaught = prevocService.SkillsTaught, SkillsLearned = prevocService.SkillsLearned, AnticipatedTransitionPlan = prevocService.AnticipatedTransitionPlans, AnticipatedEndDate = prevocService.AnticipatedEndDate, TypeWorkDesired = jobDevelopmetService.TypeWorkDesired, NeedEmpServices = jobDevelopmetService.NeedEmploymentServices, IsDVRProvidingServices = jobDevelopmetService.DVRProvidingServices, DVRCurrentReferralExists = jobDevelopmetService.DVRCurrentReferral }; return Questionnaire.CopyLinqToDataTable(); } </code></pre> <p>Database structure is as follows --></p> <h2>tblEmploymentQuestionnaire</h2> <pre><code>EmploymentQuestionnaireID uniqueidentifier Unchecked PlanID int Unchecked CommunityJob bit Checked PrevocServices bit Checked PrevocServicesID uniqueidentifier Checked InsertUser varchar(50) Checked InsertDate datetime Checked UpdateUser varchar(50) Checked UpdateDate datetime Checked JobDevelopmentServices bit Checked JobDevelopmentServicesID uniqueidentifier Checked </code></pre> <p><hr></p> <h2>tblEmploymentPrevocServices</h2> <pre><code>EmploymentPrevocID uniqueidentifier Unchecked AvgRatePay varchar(50) Checked AvgHoursWeek varchar(50) Checked SettingID int Checked PrevocGoal varchar(500) Checked SkillsTaught varchar(500) Checked SkillsLearned varchar(500) Checked AnticipatedTransitionPlans varchar(500) Checked AnticipatedEndDate datetime Checked RatioID int Checked rowguid uniqueidentifier Unchecked </code></pre> <p><hr></p> <h2>tblEmploymentJobDevelopmentService</h2> <pre><code>JobDevelopmentServicesID uniqueidentifier Unchecked TypeWorkDesired varchar(50) Checked PreferredWorkHoursID int Checked NeedEmploymentServices bit Checked DVRProvidingServices bit Checked DVRCurrentReferral bit Checked CMOProvidingServices bit Checked CMONotProvidingReason varchar(500) Checked PaidCoachingHoursID int Checked PlanSegregatedToIntegrated varchar(500) Checked RoleResponseJobDeveloper varchar(500) Checked RoleResponseMember varchar(500) Checked RoleResponseWWCTeam varchar(500) Checked PlanDVRToWWCFund varchar(500) Checked DVRCurrentReferralStatusID int Checked </code></pre> <p><hr></p> <p>Sorry it ended up being so long. If you are still with me, thank you and bonus appreciation points if someone can point out in the comments how I could have shortened this while still asking my question. I would appreciate it for future reference.</p> http://stackoverflow.com/questions/445827/gae-how-to-live-with-no-joins 5 GAE - How to live with no joins? Sam 2009-01-15T06:07:25Z 2009-11-23T22:54:57Z <h2>Example Problem:</h2> <h3>Entities:</h3> <ul> <li>User contains name and a list of friends (User references)</li> <li>Blog Post contains title, content, date and Writer (User)</li> </ul> <h3>Requirement:</h3> <p>I want a page that displays the title and a link to the blog of the last 10 posts by a user's friend. I would also like the ability to keep paging back through older entries.</p> <h2>SQL Solution:</h2> <p>So in sql land it would be something like:</p> <pre> select * from blog_post where user_id in (select friend_id from user_friend where user_id = :userId) order by date </pre> <h2>GAE solutions i can think of are:</h2> <ul> <li>Load user, loop through the list of friends and load their latest blog posts. Finally merge all the blog posts to find the latest 10 blog entries</li> <li>In a blog post have a list of all users that have the writer as a friend. This would mean a simple read but would result in quota overload when adding a friend who has lots of blog posts.</li> </ul> <p>I don't believe either of these solutions will scale. </p> <p>Im sure others have hit this problem but I've searched, watched google io videos, read other's code ... What am i missing?</p> http://stackoverflow.com/questions/648308/filtering-from-join-table 2 Filtering from join-table finpingvin 2009-03-15T18:43:24Z 2009-11-23T20:51:41Z <p>I'm having some trouble with a tricky SQL-query. </p> <p>In my MySQL database there is the tables topics, tags and tags_topics to join them. I want to fetch topics that share the same specified tags. For example, let's say i have 3 tags with ids 1, 2 and 3, i want to fetch all topics that have tag 1, 2 and 3 associated to them. The topics can have other tags, but must have all of the specified tags.</p> <p>Help me think plz xD</p> <p>EDIT: Found a solution using GROUP BY in this question: <a href="http://stackoverflow.com/questions/333750/fetching-only-rows-that-match-all-entries-in-a-joined-table-sql">http://stackoverflow.com/questions/333750/fetching-only-rows-that-match-all-entries-in-a-joined-table-sql</a> If anyone have a more elegant solution, please post :)</p> http://stackoverflow.com/questions/1784661/php-gd-create-new-image-based-on-combine-join-3-images-and-then-rotate-the-new 0 php gd: create new image based on combine/join 3 images, and then rotate the new image mauricio lopez 2009-11-23T17:24:33Z 2009-11-23T20:15:07Z <p>Basically I have 3 png images. They have the same height and different width.</p> <p>I want to create a new image on the fly, then join the 3 images (not merging, I want to respect the content of each image) and put them on the new image.</p> <p>After that I wanto to rotate that new image.</p> <p>I want to do it with php GD.</p> <p>If someone can give me an idea, It would be awesome.</p> http://stackoverflow.com/questions/1785312/sql-primer-why-and-how-to-use-join-statements 1 SQL primer: Why and how to use join statements? Andrew 2009-11-23T19:12:26Z 2009-11-23T19:26:07Z <p>I have a MySQL database that looks like this:</p> <pre><code>users ( id , name ) groups ( id , name ) group_users ( id , group_id , user_id ) </code></pre> <p>Now to look up all the groups that a user belongs to, I would do something like this:</p> <pre><code>select * from 'group_users' where 'user_id' = 47; </code></pre> <p>This will probably return something like:</p> <pre><code>( 1 , 3 , 47 ), ( 2 , 4 , 47 ), </code></pre> <p>But when I want to display this to the user, I'm going to want to display the name of the groups that they belong to instead of the <code>group_id</code>. In a loop, I could fetch each group with the <code>group_id</code> that was returned, but that seems like the wrong way to do it. Is this a case where a <code>join</code> statement should be used? Which type of join should I use and how would I use it?</p> http://stackoverflow.com/questions/1767485/sql-to-linq-translation-with-inner-join-and-2-left-joins-with-sub-query 0 SQL to Linq translation with inner join and 2 left joins (with sub-query) Shalan 2009-11-20T00:01:02Z 2009-11-23T05:23:58Z <p>Hi there! I have the following query which works fine in SSMS. Im using LinqPad (<strong>C#</strong>) but really puzzling to succeed with the left outer join in LinqToSql:</p> <pre><code>SELECT DISTINCT A.LocID, V1.PrfValue AS pID, V2.PrfValue AS sID, D.DivisionManager, A.IsApproved, A.DateCreated FROM dbo.Locations AS A INNER JOIN dbo.Divisions AS D ON A.DivisionID = D.DivisionID LEFT OUTER JOIN dbo.ValuesInLocations AS V1 ON A.LocID = V1.LocID AND V1.PrfID IN (SELECT PrfID FROM dbo.PrfTag WHERE (LevelTypeID = 1)) LEFT OUTER JOIN dbo.ValuesInLocations AS V2 ON A.LocID = V2.LocID AND V2.PrfID IN (SELECT PrfID FROM dbo.PrfTag WHERE (LevelTypeID = 2)) </code></pre> <p>As you can see, this isn't the most elegant query to begin work, and I agree that the subquery in both left joins could be improved. However, could you please help me with this translation??</p> http://stackoverflow.com/questions/1777406/trouble-with-chaining-joins 0 Trouble with chaining joins BillB 2009-11-22T01:09:13Z 2009-11-22T18:13:57Z <p>I was wondering if someone could help me with chaining joins - I'm not understanding the thought process. </p> <pre><code>An example with three tables: ArticleCategories ----------------- CategoryID CategoryName Articles --------- ArticleID ArticleText CategoryID (FK) ArticleComments ----------------- CommentID ArticleID (FK) CommentText </code></pre> <p>I have an sp to get article info for all articles of a particular category, including a count of comments for an article, but I think it needs improvement. My struggle has resulted in this:</p> <p><hr></p> <pre><code>With resultSet AS ( select a.ArticleID , a.ArticleText , a.CategoryID , c.CommentCount from Articles a Left Outer Join (Select count(c.CommentID) as CommentCount, c.ArticleID from Comments c Group BY c.ArticleID ) c on a.ArticleID = c.ArticleID ) select * from resultSet where resultSet.CategoryID = 2 </code></pre> <p><hr></p> <p>How should I have written this? I was looking for a way to eliminate the resultSet and the select on the resultSet.</p> <p>Thanks much for any help Bill</p> http://stackoverflow.com/questions/1779012/search-function-sql-server 0 Search function, SQL Server Patrick 2009-11-22T15:24:21Z 2009-11-22T16:29:48Z <p>Hello!</p> <p>I am creating a small search function on my site, this enables the search for articles in the system. Each article has a set of keywords associated to it and these keywords are stored inside a SQL Server database.</p> <p>This is the table:</p> <pre><code>CREATE TABLE [dbo].[SearchWords] ( [ID] [int] IDENTITY(1,1) NOT NULL, [ArticleID] [int] NOT NULL, [SearchWord] [nvarchar](20) NOT NULL, CONSTRAINT [PK_SearchWords] PRIMARY KEY CLUSTERED ([ID] ASC) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] </code></pre> <p>Each article can have an unlimited amount of keywords. Now my problem is the search itself. When for example the user types:</p> <p>France actors</p> <p>I want the system to find all articles (just once DISTINCT) with the keywords France and actors. I am passing the search criteria as a varchar (seperated with space) to the stored procedure. Then i am splitting the words up with the following function: (Erland Sommarskog) <a href="http://www.sommarskog.se/arrays-in-sql-2005.html#iter-list-of-strings" rel="nofollow">http://www.sommarskog.se/arrays-in-sql-2005.html#iter-list-of-strings</a></p> <p>How do i then match the criteria words against the search words and only get the distinct article ids?</p> <p>I am working with something like this, just that i cant understand how to match all the keywords. This method works if just one keyword is entered. If the user enters multiple, then it doesn't return anything even if the article has all involved keywords.</p> <pre><code>declare @temp nvarchar(50) set @temp = 'France actors' SELECT DISTINCT Article.ArticleID FROM Article INNER JOIN SearchWords ON Article.ArticleID = SearchWords.ArticleID JOIN iter_charlist_to_tbl(@temp, DEFAULT) s ON SearchWords.SearchWord = s.nstr </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/1743325/cant-use-skip-in-linq-query 0 Can't use "Skip" in LINQ query Adam 2009-11-16T16:39:08Z 2009-11-20T17:17:04Z <p>I have a linq query in which I need to specifically do a left join. However when I attempt to commit a lambda Skip function on the query it errors and says that the skip cannot be performed on a linq query with a join.</p> <p>Here's the query (the skip variable is a parameter into the function and clientDB is the datacontext):</p> <pre><code> Dim questionsQuery = From helpQuestion As HelpQuestion In clientDB.HelpQuestions _ Group Join helpCat As HelpCategory In clientDB.HelpCategories _ On helpCat.ROW_ID Equals helpQuestion.CATEGORY_ID Into helpGroup = Group _ From helpCategory In helpGroup.DefaultIfEmpty() _ Where helpQuestion.DISPLAY_DESK _ Order By helpQuestion.ROW_ID Descending _ Select helpQuestion.ROW_ID, helpQuestion.EMAIL, helpQuestion.FIRST_NAME, helpQuestion.LAST_NAME, helpQuestion.QUESTION, helpQuestion.CREATED, helpQuestion.RESPONSE, helpCategory.CATEGORY_NAME If skip &gt; 0 Then questionsQuery = questionsQuery.Skip(skip) End If </code></pre> http://stackoverflow.com/questions/1764578/select-top-1-in-a-many-to-many-query 2 SELECT TOP 1 in a many to many query ilivewithian 2009-11-19T16:24:37Z 2009-11-20T08:23:52Z <p>I have a faily simple many to many schema, which looks like this:<img src="http://img406.imageshack.us/img406/8207/partialschema.png" alt="alt text"></p> <p>What I'm trying to do is select all players with some arbitary conditions and I also want to select their most recent match, if they've played in one.</p> <p>What I've managed to do is:</p> <pre><code>SELECT tblPlayer.PlayerId, tblPlayer.Surname, tblPlayer.Forename, (SELECT TOP 1 tblMatch.HomeClub + ' v ' + tblMatch.OpponentClub + ' ' + tblMatch.AgeGroup + ' (' + CONVERT(VARCHAR, tblMatch.MatchDateTime, 103) + ')' FROM tblAppearance INNER JOIN tblMatch ON tblAppearance.MatchID = tblMatch.MatchID WHERE tblAppearance.PlayerID = tblPlayer.PlayerID ORDER BY MatchDateTime DESC) AS Match FROM tblPlayer LEFT JOIN tblAppearance ON tblAppearance.PlayerId = tblPlayer.PlayerId LEFT JOIN tblMatch ON tblMatch.MatchId = tblAppearance.MatchId WHERE tblPlayer.Forename LIKE '%rob%' AND tblPlayer.Surname LIKE '%white%' ORDER BY tblPlayer.Surname, tblPlayer.Forename, tblPlayer.DOB, tblMatch.MatchDateTime DESC </code></pre> <p>The problem is that this selects all the matches that a player has been in, not just their most recent one. I know this should be simple, but I can't seem to get the right syntax for it.</p> <p>Also, I'd rather return the separate columns from the match table as separate columns and not as a formatted lump.</p> <p><strong>Answers to requests for more info:</strong></p> <p>Yes there is an MatchDateTime column, which I intend to use for sorting.</p> <p>Yes I do want players who haven't yet played any matches, the left join is deliberate.</p> http://stackoverflow.com/questions/1767913/mysql-joining-four-tables-and-using-week-and-datediff-to-get-current-data 1 MySQL joining four tables and using WEEK and DATEDIFF to get current data? Anders 2009-11-20T02:17:23Z 2009-11-20T05:18:56Z <p>Hi!</p> <p>I'm trying to write a query getting information from four tables and I'm not able to figure it out. Can someone please help me with some guidance?</p> <p>The model is that a user can book a room for a specified time period. I would like to retrieve the data that is current for the next seven days so I'm using WEEK and DATEDIFF. The DATEDIFF is to make sure that I don't get back any room booking happening in the future or more than a year ago. I have four tables: users, rooms, times, bookings</p> <p>USERS:</p> <pre><code> CREATE TABLE IF NOT EXISTS users ( apartmentNumber varchar(4) NOT NULL, surname varchar(50) NOT NULL, password varchar(40) NOT NULL, PRIMARY KEY (apartmentNumber) ) </code></pre> <p>ROOMS:</p> <pre><code>CREATE TABLE IF NOT EXISTS rooms ( id int(11) NOT NULL auto_increment, name varchar(40) NOT NULL, PRIMARY KEY (id), KEY name (name) ) </code></pre> <p>TIMES:</p> <pre><code>CREATE TABLE IF NOT EXISTS times ( id int(11) NOT NULL auto_increment, start time NOT NULL, stop time NOT NULL, PRIMARY KEY (id), KEY start (start) ) </code></pre> <p>BOOKINGS:</p> <pre><code>CREATE TABLE IF NOT EXISTS bookings ( id int(11) NOT NULL auto_increment, user varchar(4) NOT NULL, room int(11) NOT NULL, date date NOT NULL, time int(11) NOT NULL, PRIMARY KEY (id), KEY room (room), KEY time (time), KEY user (user) ) </code></pre> <p>I've populated these tables with the following data:</p> <pre><code>INSERT INTO bookings (id, user, room, date, time) VALUES (1, '0379', 1, '2009-11-19', 1), (2, '0379', 1, '2009-11-23', 2), (3, '0379', 1, '2009-11-14', 3), (4, '0379', 2, '2009-11-23', 3), (5, '0379', 2, '2009-11-19', 2), (6, '0379', 2, '2009-11-20', 1); ALTER TABLE bookings ADD CONSTRAINT bookings_ibfk_2 FOREIGN KEY (room) REFERENCES rooms (id) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT bookings_ibfk_3 FOREIGN KEY (user) REFERENCES users (apartmentNumber) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT bookings_ibfk_4 FOREIGN KEY (time) REFERENCES times (id) ON DELETE CASCADE ON UPDATE CASCADE; INSERT INTO rooms (id, name) VALUES (1, 'Room 1'), (2, 'Room 2'); INSERT INTO times (id, start, stop) VALUES (1, '07:00:00', '12:00:00'), (2, '12:00:00', '17:00:00'), (3, '17:00:00', '22:00:00'); INSERT INTO users (apartmentNumber, surname, password) VALUES ('0379', 'Smith', 'password'); </code></pre> <p>Before adding the times table (as the time were previously in the bookings table) I managed to get the data out with the following query:</p> <pre><code>SELECT users.surname, users.apartmentNumber, rooms.name as room, bookings.date, bookings.time FROM bookings, rooms, users WHERE WEEK(NOW(), 7) = WEEK(bookings.date, 7) AND DATEDIFF(NOW(), bookings.date) &lt; 1 AND DATEDIFF(NOW(), bookings.date) &gt; -10 AND users.apartmentNumber = bookings.user AND bookings.room = rooms.id ORDER BY room, bookings.time, bookings.date ASC; </code></pre> <p>But after breaking out the times to a separate table I'm not able to do it:</p> <pre><code>SELECT users.surname, users.apartmentNumber, rooms.name as room, bookings.date, times.start, times.stop FROM bookings, rooms, users, times WHERE WEEK(NOW(), 7) = WEEK(bookings.date, 7) AND DATEDIFF(NOW(), bookings.date) &lt; 1 AND DATEDIFF(NOW(), bookings.date) &gt; -10 AND users.apartmentNumber = bookings.user AND bookings.room = rooms.id AND times.id = bookings.time ORDER BY room, bookings.time, bookings.date ASC; </code></pre> <p>The result set from the above query is:</p> <pre><code>Smith 379 Room 2 2009-11-20 07:00:00 12:00:00 </code></pre> <p>but it should include the two bookings on 2009-11-23</p> <p>I'm lost... any comments will be appreciated. Thanks!</p> <p>/Anders</p> http://stackoverflow.com/questions/1744111/tips-or-tricks-for-translating-sql-joins-from-literal-language-to-sql-syntax 1 Tips or tricks for translating sql joins from literal language to SQL syntax? hal10001 2009-11-16T18:53:23Z 2009-11-19T22:14:12Z <p>I often know exactly what I want, and know how tables are related in order to get it, but I have a real hard time translating that literal language knowledge to SQL syntax when it comes to joins. Do you have any tips or tricks you can share that have worked for you in the past?</p> <p>This is a basic, but poor example:</p> <p>"I have Categories, which have one-to-many Products, which have one-to-many Variants, which have one-to-many Sources. I need all Sources that belong to Category XYZ."</p> <p>I imagine doing something where you cross out certain language terms and replace them with SQL syntax. Can you share how you formulate your queries based upon some concept similar to that? Thanks!</p> http://stackoverflow.com/questions/788092/rails-hasandbelongstomany-join-across-3-tables 0 Rails has_and_belongs_to_many join across 3 tables Birdman 2009-04-25T02:29:33Z 2009-11-19T19:00:03Z <p>I have a three models: listing, category, and site. There is a many to many relationship between listing and site and there is a many to many relationship between listing and category. A listing thus belongs to one or more sites and one or more categories (a listing can appear on multiple sites and multiple categories).</p> <p>Given a site id and a category id, I want a set of all the listings. I understand how to get the listings from a site id (listings = site.listings) and how to get the listings from a category id (listings = category.listings), but how do I get the triple join of the set of listings from both a site id and category id?</p> <p>The sql would look something like (sit_id and cat_id are input): select l.name from listings l, categories_listings cl, listings_sites, ls where cl.category_id = cat_id and ls.site_id = sit_id and cl.listing_id = l.id and ls.listing_id = l.id</p> <p>Thanks in advance</p> http://stackoverflow.com/questions/1762966/linq-query-from-more-tables 0 linq query from more tables ognjenb 2009-11-19T12:30:49Z 2009-11-19T13:48:20Z <p>public ActionResult myItems() {</p> <pre><code> var dataContext = new RecordsDataContext(); MembershipUser myObject = Membership.GetUser(); string CurrentUserName = myObject.UserName.ToString(); var user = from i in dataContext.myUsers where i.userName ==CurrentUserName select i.id; var items=from j in dataContext.OtherUsers where j.id_user==user /*error:operator '==' cannot be aplied to operands of type 'int' and 'System.Linq.Iquerable&lt;int&gt;'*/ select j; return View(items); } </code></pre> <p>Pls help me with this error</p> http://stackoverflow.com/questions/1762333/difference-between-join-and-no-join-select 0 difference between join and no join select ? hkernel 2009-11-19T10:31:25Z 2009-11-19T10:44:20Z <p>Greetings all,</p> <p>I see no difference between the two queries below:</p> <pre><code>query_join = select a.id, b.name, a.telephone, a.description from tb_industry a left outer join tb_sector b on a.sector_id = b.id query_select = select a.id, b.name, a.telephone, a.description from tb_industry a , tb_sector b WHERE a.sector_id = b.id </code></pre> <p>The result is exactly the same. Now I guess this could happen, but I would like to get enlightment on what are the situations where only query_join is best, and the situations where query_condition is best?</p> <p>Many thanks</p> http://stackoverflow.com/questions/1733212/sql-joins-and-getting-used-to-them 1 sql joins and getting used to them Jeff 2009-11-14T04:00:47Z 2009-11-19T05:00:17Z <p>Hi,</p> <p>I had a big interview that I screwed up when the interviewer asked me to join three tables. I can verbally describe the different types of joins, but I froze up. I'm looking for something that gets me used to these types of problems so I can anticipate how to solve them. Anybody have any SQL excercises they could possibly recommend?</p>