A join is a general operation in relational algebra for a combining operation on two or more relations in a relational database system. `JOIN` is also keyword of the SQL language for performing a join operation.

learn more… | top users | synonyms (2)

0
votes
2answers
21 views

How do I use MySQL Left Join to get results based on another table row's id?

I am building a custom forum in CodeIgniter. I have four primary tables: parents(categories), children(boards), threads, and messages(replies). The thread table only contains the thread id, author, ...
2
votes
4answers
49 views

joining strings with a separator and taking into account empty strings

I have an object that has a few properties eg. Employee -Name -Company I want to get a formatted string for their firstname and company separated by a "-". Now I can do a string.Join("-", ...
0
votes
1answer
21 views

How do I use MySQL Left Join to order by the column of another table?

I am building a custom forum in CodeIgniter and currently working to order the threads of a board by the time that the last message of the thread was posted. I have a table for categories(parents), ...
0
votes
2answers
20 views

SQL: Select Foreign Records Using Complex Join

I want to select a "site" record(s) randomly, and then get the related "channels" for it. Here's what I've tried that doesn't work. Please help. Thank you! SELECT A.*, B.* FROM ( ...
-1
votes
0answers
13 views

MySQL Consulting

I have to select the cars that have more than 5 reparations in 2011, besides that cars has been used more than 10 parts but no less than 2 in the reparation Select * From Vehiculos Where VehiculoCod ...
0
votes
1answer
27 views

I need get all records from table joined where at least one case with condition

I have three tables: cp_projeto (id, nome...) cp_habilidade_projeto (id, id_projeto) cp_habilidade (id, nome...) I need all projects with all cp_habilidade where cp_projeto have one ...
1
vote
1answer
32 views

Mixed JOIN and COMMA table listing in FROM; meaning of listed items

Ok, I currently tasked with maintaining a legacy SQL Server 2005 database recently migrated to 2008 [R2] and there are some sprocs with something like the following: SELECT @val = c.TableVal FROM ...
0
votes
1answer
10 views

mssql query join to work out esclation person based on discounts percentage

Hi I have the below working query(mssql) select max(load_number) load_number,max(linediscount) maxlinediscount,max(CustomerBand) customer_band from [Linked_Order_lines] join ...
0
votes
1answer
35 views

Postgres:Get the latest record from a table

I have two tables which I use to fetch data and from this data I want to identify the records which are lastest related to a particular value. My first table is : g_190048( id, ...
0
votes
1answer
37 views

SQL Server 2008 Issue With GROUP BY

SELECT ETRN_MFTransactionGroup.FolioNumber, ETRN_MFTransactionGroup.PrimaryApplicantContactID, ETRN_MFTransaction.PK_TransactionGroupID AS Expr1, ETRN_MFTransaction.PK_SchemeProductID, ...
1
vote
5answers
48 views

SQL - Can't check if NULL

If I have the following SQL: SELECT * FROM users LEFT JOIN friendship ON users.username = friendship.user_name I get the following result But if I add the following WHERE at the end, I don't get ...
0
votes
1answer
13 views

How to display name instead of id using active admin in rails 3

Hi I'm working on a Rails 3.2.9 app which uses devise and ActiveAdmin. I have models like users and company. I want admin to select one manager from list of registered users for a particular company. ...
0
votes
0answers
20 views

Oracle SQL meaning of (+)?

I came through an old SQL queries and converting them, but found the following command which is not usual to me which is the (+) As per checking in the internet, it is an left/right outer join. But ...
1
vote
2answers
22 views

Unique ManyToMany selection

I have 2 tables with a ManyToMany relation: Image {id, name, score} Tag {id, name} Images_Tags {image_id, tag_id} I want to select 3 specific tags by their Ids (20, 21, 22) and for each tag, ...
0
votes
4answers
28 views

How to combine the following queries result in mysql

FIRST QUERY select b.id , b.value,b.name from table_1 b where b.id = 900; RESULT: id value name 900 5027 AA 900 79426 BB 900 132276 CC 900 302885 ...
1
vote
2answers
19 views

MySQL Pivot table using Join

Hey guys I am stuck at a problem in MySQL, can you please help me. I have a form which gives ratings to certain parameters. Now what i want to do is i want to show a table in which for every ...
0
votes
0answers
31 views

(mySQL) Selecting Person(with same name, address, income) who have 3 or more Friends

I'm(newbie in SQL) trying to query the database to find all person who have 3 or more friends with the same data(name, address, income)but I could not figure out the correct query. (below are my ...
0
votes
3answers
26 views

Getting name from other table with joins

I have a table with logs: LOGGING (300 rows): - id - type_id - timestamp - notes And a table with logging types: LOGGING_TYPES (4 rows): - id - typename The field logging.type_id links to ...
1
vote
3answers
35 views

Syntax errors in MS Access converting from SQL

From my earlier question subqueries-on-subqueries I'm now trying to put this into access The code is from answer one on the link, copied and pasted exact with the exception of putting ...
0
votes
1answer
39 views

Why does my hibernate join only return queries from one table?

My query is: List<EmpModel> EmpData = sess2.createCriteria(EmpModel.class) .setFetchMode("TestModel", FetchMode.JOIN) ...
0
votes
2answers
19 views

SQL Implicit Join joining 3 tables

I understand implicit JOINS are outdated but it's for a homework assignment. All his examples for implicit joins only join 2 tables, and I can't find an example anywhere that joins 3. SELECT Name ...
0
votes
0answers
62 views

How would I use a MYSQL Join to get this info in PHP?

I am building a custom forum application with CodeIgniter. I have 4 primary tables: parents(categories), children(boards), threads, and messages(thread replies). What I would like to do is display ...
0
votes
1answer
24 views

Performing a Hibernate Join on two tables with a One to Many Association

I basically have a database with two tables in it with the following schema: Employee |id|Age|Sex| Table |Table_id|Emp_id|Location| My employee.hbm.xml file looks like: <property ...
0
votes
2answers
55 views

MySQL Left Join and excluding values

UPDATE There is a database model in sqfiddle: http://sqlfiddle.com/#!2/8dbb0/10 And I updated the question according to the annotations. Original Post I have three tables: posts tags tag_to_post ...
0
votes
1answer
32 views

mysql multiple joins vs multiple queries

I was wondering about the merits of performing a multiple inner join VS multiple simple queries (to the localhost, so bandwidth & packet delay are not an issue). The question has been asked ...
0
votes
1answer
22 views

Trying to associate 4 tables with one mysql query

So, I'm a novice php/mysql developer and I'm trying to learn more by creating a text based gaming application (a little context). I'm building an armory and the armor uses 4 tables. The goal of this ...
0
votes
2answers
51 views

Join from 3 tables

I'm trying to join 3 tables in a view; here is the situation: I have a table PROJECTS that contains information of projects. table structure (id primary key, project_id. I have another table ...
0
votes
2answers
25 views

Complex relational mysql query with sum

I'm struggling to construct a mysql query. I need to obtain data from two tables: Table cash ---------- id income_money cashdata_id paymentterm _ Table cash_data ------------ id total user date ...
0
votes
0answers
15 views

mysql: consequences of using display width with ZEROFILL

The documentation says: If you store values larger than the display width in an integer column that has the ZEROFILL attribute, you may experience problems when MySQL generates temporary tables ...
0
votes
2answers
44 views

SQL Join issue returning NULL values

I am having trouble running a query over three tables: users, user_teams, user_messages I wish to create a report where a line manager can see the total for incoming mail and outgoing mail for all ...
2
votes
3answers
23 views

Last record query in two linked tables

I have a table called 'Purchases': PurchaseID, PurchaseDate, Vendor ╔════════════╦══════════════╦════════╗ ║ PurchaseID ║ PurchaseDate ║ Vendor ║ ╠════════════╬══════════════╬════════╣ ║ ...
1
vote
0answers
19 views

HQL right join empty list

I am using hql with hibernate. I've tried to write a query over three tables. The tables are Medientyp, RaumMedientyp and Raum. I wanna read all Medientyp's from the whole table and all ...
0
votes
0answers
29 views

Simplify subselects with join [migrated]

I'm trying to create a report in Microsoft Reporting Service that shows the availability of multiple sites monitored by an tool. The monitoring tool uses an MSSQL 2012 database to store the data. I've ...
1
vote
2answers
26 views

MySQL: get distinct values from two columns and check whether they occur in two other columns of the same table

I have been twisting my brain over this for quite a while now. So it's time to ask you guys. I have the following (simpified) MySQL table called 'fam': ...
0
votes
1answer
38 views

SQL get last messages from/to certain user

I'm trying to make SQL query from table, - get last messages from all pairs of users with user 36 as sender or recipient, and join them with users table to get names. I've managed to create something ...
1
vote
0answers
17 views

Rails 4, Ruby 2.0: Get PG Error when trying to get all records having a specified value in joined table

Given the following two classes: class VacationRequestDay < ActiveRecord::Base belongs_to :vacation_request, :inverse_of => :vacation_request_days, ...
2
votes
2answers
21 views

How to update field in a table based on existence of a row in a query in MSAccess

I have an MS Access table with one field I want to update based upon whether a key exists in a separate query. I have tried to research and found similar but not the same problems (e.g. Access 2003 - ...
1
vote
3answers
22 views

PHP MYSQL Join and output unmatched results

I've two tables : One called "Collected_items" and the Other "Wrong_Collected"..As shown below : **collected_items** item_no qty x1 10 x2 20 BB 5 Z1 20 x13 13 ...
0
votes
1answer
19 views

messaging mysql table query

So im trying to implement a messaging system, but with a slight twist. Messages can only be started from user 2 to user 1. This starting message has the start = 1 value. ...
2
votes
1answer
31 views

SQL multiple join tidy up

I have this statement: SELECT board.*,numlikes FROM board LEFT JOIN ( SELECT pins.board_id, COUNT(source_user_id) AS numlikes FROM likes INNER JOIN pins ON pins.id = likes.pin_id ...
0
votes
1answer
30 views

boost thread & class

I need to execute "Run" in a separate thread class TcpClient { public: TcpClient(); virtual ~TcpClient(); void Run(); } I run it using boost: MessageBox(0, "1", APP_NAME, NULL); ...
0
votes
2answers
25 views

Error Running simple mysql query

I am trying tu run a simple MYSQL query but it throws an error everytime.The query is SELECT * FROM `user_recommendation` LEFT JOIN `tracking` user_recommendation and tracking are in the same ...
0
votes
0answers
16 views

mysql return nth record based on join

I have a mysql query question. I would like to retrieve the nth record from a table/view. I know this is normally done with the LIMIT however this doens't take variables (except for stored procedures, ...
0
votes
0answers
27 views

Multi Join + Groub By, get 1 row per album with max rating

im trying to make a chart list and i use the following query SELECT vmm_user.username, vmm_songs.*, vmm_albums.desc, vmm_albums.release, vmm_albums.name, ...
0
votes
0answers
33 views

TSQL, Scalar Function, Query Optimisation

Just looking for some feedback regarding a view query I have that references a Scalar UDF multiple times and whether there is a better way to do this? I've considered converting the UDF to a Table ...
0
votes
1answer
60 views

SQL Join doesn't show up correctly

i'm trying to find a solution, i'm trying to get a data from different tables using same id. Here is my code "SELECT * FROM menucat LEFT JOIN vmenutab ON menucat.cat_id = vmenutab.menu_id"; I need ...
0
votes
2answers
18 views

Mysql query multiple tables retrieve all results even null

I try to make this query to include all products_options_name results even if there are no related rows for the selected language in the information table. When I run the query now, only ...
0
votes
1answer
25 views

Joining sql statements

I have this statement: SELECT board.*, numlikes FROM board LEFT JOIN (SELECT pins.board_id, COUNT(source_user_id) AS numlikes FROM likes INNER JOIN pins ON ...
0
votes
2answers
19 views

Counting codes from one table in multiple tables returning 0s

I am new to SQL and databases. I'm using them to code data for an academic paper (assign relevant information tags to various sentences). I've looked around, but my newness to SQL might have me ...
0
votes
2answers
46 views

SQL person duplicates

How can I eliminate the duplicates of the persons. SELECT Persons.Id, Activity.Activity, Activity.Description, Activity.StartDate, Activity.EndDate FROM Activity INNER JOIN Login_Activity ON ...

1 2 3 4 5 200