A database operation that combines the values of 2 tables based on a condition, or relationship, that exists between those tables.

learn more… | top users | synonyms

0
votes
1answer
16 views

Django how i can get User.username and Group.name

I need to get the username and the name of group for all user. The model that i use are User(default) and Group(default) index.html: {% for dato in usuarios %} {{dato.first_name|title}} {% ...
0
votes
1answer
32 views

How to JOIN two tables when not using any Primary Keys?

I'm trying to JOIN 2 tables using columns that aren't either of the tables respective Primary Keys: SELECT * FROM TableA A INNER JOIN TableB B ON A.col5 = B.col5 Yet the above is returning 0 ...
0
votes
1answer
24 views

dusplication in results using php mysql and inner join

i have three drop list that contain retrieved values from the database from 3 different tables governorate: governosrate_id governorate_name district: district_id district_name village: ...
-1
votes
0answers
21 views

I have 3 types of search but it do dusplication

I have a 3 types of search by governorate by district by city each time the user select governorate the system display the right answers but if the user choose district it duplicate the ...
1
vote
1answer
20 views

search using 3 options with hidden input type do not work

i have a search page that allow user to search about other members using 3 types even by governorate district village and i am using one form and one button for all the three types with 3 ...
0
votes
0answers
13 views

Search page with three types of search using php and mysql [duplicate]

I have a search page that include three types of search that allow user to select one of these. The second type contain a drop list that allow the user to select one of the values that are stored in ...
0
votes
1answer
27 views

search page that allow user to select between three types using php mysql

i have a search page that include three types of search and i want to filter the search upon the selecting types type 1 : by newest members type 2 : by specialization type 3 : by name ...
-1
votes
2answers
68 views

syntax error using php and mysql using innner Join [closed]

i have a search page that allow user to search about users using three types by newest and by name and by specialization the error i got when u search by specialization : the error:You have an error ...
0
votes
1answer
15 views

MySQL: INNER JOIN crashes 2 LEFT JOINs if one of them returns NULL

In query: SELECT i.id, i.title, i.description, cities.name as city, GROUP_CONCAT(DISTINCT station.name) as station, GROUP_CONCAT(DISTINCT p.url) as photos FROM items i INNER JOIN ...
0
votes
1answer
23 views

MySQL: How can I INNER JOIN with LEFT JOIN results

I have a table items which is the points on the map. They have list of the nearest subway stations in table item_stations (item_id, station_id). The names these stations are placed in table stations ...
0
votes
2answers
25 views

Referring to a column from a different table in inner join select

I'm trying to join onto an inner query, which is having it's results filtered by a value in the other table, so I can select the top result and use a value in it multiple times in my main select ...
0
votes
0answers
14 views

Sum Daily Work hours in a Log file

ID WrkDate EmpName 1 07/09/2013 05:00:00 John Brown 2 07/09/2013 17:00:00 John Brown 3 08/09/2013 06:00:00 Sara White 4 08/09/2013 13:00:00 Sara White I have a table ...
0
votes
1answer
53 views

Yii: Innerjoin with 3 tables

wanted to get all my friendlikeactivity on my site. I have 3 tables: follow_users (user_id, follow_user_id) videos (ID, Title, Date, Likes, Views, Active, users_id) videos_has_userlikes (id, ...
0
votes
1answer
55 views

how to perform additional inner join on pivot table with laravel eloquent

I have four tables: foods: id, name users: id, name mealtypes: id, name food_user: id, food_id, user_id, mealtype_id foods and user have a many-to-many relationship mealtype has a one-to-one ...
0
votes
3answers
54 views

MySQL inner join with two tables

I'm very new to MySQL and PHP and I'm struggling with inner joins between two tables. I'm constructing a script that reads an os commerce database and tells me which products is currently on back ...
0
votes
2answers
50 views

Yii: How to Fetch data from mutiple models with criteria?

I'm trying to fetch data from the database with an innerjoin and criteria. I want to have al the result of the users and the videos. For now i'm using the createCommand: public function ...
0
votes
0answers
14 views

UPDATE T1.Name SELECT TOP 1 Name FROM T2 WHERE T1.DocId = T2.DocID AND T2.NAME NOT IN T3.IgnoreNames

I'm trying to UPDATE T1.LastUser with the TOP 1 Name FROM T2 WHERE T1.DocId = T2.DocID AND that name is NOT IN T3.IgnoreName and it is sorted by T2.UsageDate. T1 has only one record for each DocID. ...
1
vote
2answers
43 views

inner join with php the browser display a syntax error [duplicate]

I have a select query with inner join. I try it in phpmyadmin it works fine. But when I try it in the browser it display this error message: You have an error in your SQL syntax; check the manual ...
0
votes
3answers
46 views

syntax error in mysql with php using inner join [closed]

i have a select query with inner join i try it in phpmyadmin it work fine but when i try it in the browser it display this error msg : You have an error in your SQL syntax; check the manual that ...
0
votes
0answers
16 views

using google map embeded in the website with php and mysql do not appear

google map must appear in the browser in the profile page but the browser do not show it i do not know waht is the error can anyone help me ?? this is the chunk of code that is related to the ...
0
votes
0answers
27 views

google map + php mysql select the stored longitude and latitude

i have a map page that use google map to display user's location but the problem is that the browser show a blank page with the red border that i added to specify the map div so can anyone help me ...
-1
votes
1answer
77 views

display google map with php and mysql using the longitude and latitude stored in the database is not workingg

I have a map page that include a Google map to display users static locations using the php and mysql because the longitude and lattitude are stored in the database in village table but the ...
0
votes
1answer
44 views

use Google map with php and mysql to display locations

i have a map page that include a Google map to display users static locations using the php and mysql because the longitude and lattitude are stored in the database in village table but the ...
0
votes
1answer
40 views

Grails/groovy/GORM performing inner-join like query

I am trying to get a list from 3 domains in grails (something like inner join in any regular programming language) here are my domains class Category{ Integer id String name } class Tag{ ...
0
votes
1answer
13 views

How should I do the following joins to get desired result?

I have three tables. table1, table2, and table3. So, the attributes object, R1, and R2 in table1 correspond to the object names in table2 "yahoo", "email", and "ping". And R3 corresponds to the ...
1
vote
1answer
37 views

inner join on a left join not returning record when the left joined record is not present

|----------------------------| | Tbl_1 | |--------------|-------------| | id | name_1 | |--------------|-------------| | 1 | t_1_rec_1 | ...
0
votes
1answer
15 views

code with iner joinnnn and select not working

I have a select query used with php and inner Join but the browser displays an error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for ...
0
votes
3answers
43 views

select query not working

I have a select query used with php and inner Join but the browser displays an error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for ...
1
vote
2answers
38 views

Multiple SQL JOIN statement

I have to make a query from two table, so for example here is my table structure for "student" table: ------------------------------------------- id | Name | mom_job_id | dad_job_id ...
2
votes
4answers
66 views

How Delete using INNER JOIN with SQL Server?

I want delete use INNER JOIN in SQL Server 2008. But Error: Msg 156, Level 15, State 1, Line 15 Incorrect syntax near the keyword 'INNER'. Code: DELETE FROM WorkRecord2 INNER JOIN Employee ON ...
-2
votes
1answer
25 views

Mysql join practices use LEFT JOIN and INNER JOIN only? [closed]

As I am reading about joins I realize that only two of those are in work as others are just the same. Am I correct? INNER JOIN = JOIN LEFT JOIN = LEFT OUTER JOIN Are there any joins that you ...
0
votes
1answer
36 views

Can I use mysql JOIN without ON condition?

I could not learn how to use JOIN well. I was always using server side code for such objectives. Is it possible to write join query without ON? Basically how do these joins differ LEFT JOIN, RIGHT ...
0
votes
0answers
27 views

MySQL Query Optimization and joins

I am wondering whether my query should run faster, and whether I can make it run faster with query optimization. I have two tables, tweets and nGrams which contain about 600,000 and 13.8 million rows ...
0
votes
2answers
14 views

mySQL inner join table IF needed

Hey all i have the following query: SELECT UA.Fname, UA.LName, UA.Title, UA.AccDate, UA.Address1, UA.Address2, UA.City, UA.State, UA.Zip, UA.Email, UA.Phone, LabCaseNum, SpecCaseNum, ...
0
votes
2answers
57 views

nested select with delete sql statement

I dunno how do I need to solve it: i've got a select statement: SELECT sum_lines.id, sum_lines.line_id, sum_lines.summary_id, sum_lines.text_content, ...
0
votes
2answers
37 views

following linq performing left outer join instead of inner join

I cannot see where the problem lies with the following code. I am trying to retrieve those employees who are named as responsibles for certain vacancie. I have about 20 vacancies in my DB assigned to ...
-2
votes
1answer
15 views

Inner join cakephp 2?

I'm having 2 tables named, users and userdetails. Basicly the query i want to run is: SELECT * FROM users INNER JOIN userdetails ON users.id = userdetails.userid I wonder how you could get this ...
0
votes
2answers
36 views

Find the common values in all subqueries

I have a bunch of subqueries that each return a bunch of records with two ID fields. I need to return a list of all ID pairs that exist in all subqueries. I was thinking I could do something like ...
1
vote
2answers
83 views

Can a list field be a shard key in MongoDB?

Have some data that looks like this: widget: { categories: ['hair', 'nails', 'dress'] colors: ['red', 'white'] } The data needs to be queried like this: SELECT * FROM widget_table ...
0
votes
1answer
42 views

How can I make these two queries a single query with an inner join?

I have these two queries that I need to make into a single query. Keyfield1 and TPOLNO should be the join fields. How would I go about making this a single query? SELECT TPOLNO, SUM(TTSAMT) AS SUM ...
1
vote
1answer
57 views

SQL INNER JOIN duplicating data on output?

I am using SQL Server 2008 and trying to join data from 4 different tables where the tables are related such that the 2nd table is a child of the 1st and the 3rd & 4th tables are BOTH children of ...
1
vote
1answer
25 views

Oracle SQL - Add 2 numbers, show maximum number and show name from another table

Im trying to query my database and I have a few tables. First table is Player table. This has PlayerID and FirstName and a bunch of other stuff that isnt relevant to this question. My other table is ...
-1
votes
1answer
34 views

SQL Inner join tables with identical column names

I'm an doing an inner join on two tables with that have identical column names 'model' using the query below. It seems like I'm not getting both of these columns in the response. Is there some trick ...
0
votes
2answers
30 views

MySQL: INNER JOIN vs. separate queries in case of fixed amount of entries in one of the tables

Here is my question. Option 1: SELECT B.some_field FROM A INNER JOIN B ON A.id = B.a_id WHERE ((A.field1 = '1' AND A.field2 = '2') OR (A.field1 = '2' AND A.field2 = '1')) Option 2: $id1 = ...
0
votes
0answers
64 views

Hibernate : Join two child tables on foreign key

I have a parent Task table. Task (taskId, taskType, ... ) I have two child tables, TaskAttributes (primaryKey, taskId, attributeKey, attributeValue) and TaskStateMappings (primaryKey, taskId, ...
1
vote
4answers
29 views

Discrepance obtaining values not in inner join by difference

I have table A and table B. I know table B has 7848 rows (count(*)) and I want see which of those 7848 exist inside table A. As far as I know INNER JOIN returns the values that appear in BOTH tables A ...
0
votes
1answer
26 views

Series of “Join” work fine with Mysql but return blank row with Oracle

I have a serie of join to apply to search data from both Mysql and Oracle database. Mysql: SELECT * FROM good good INNER JOIN customized_value val ON good.good_id = ...
0
votes
1answer
28 views

Trying to debug INNER JOIN cannundrum

I am using a smaller function to try and debug a bigger function's inner join. I am a novice who has little experience of using joins. In fact, I've only just started trying to use inner-joins ...
0
votes
3answers
53 views

INNER JOIN returning un-expected NULL (PHP/MySQL)

I am currently running a function which uses an inner join in a while loop which is un-expectedly returning nothing back. $data3 = '\'' . implode('\', \'', $posted_email) . '\''; $exam_recordation ...
0
votes
2answers
25 views

Integrating a INNER JOIN into an existing PHP function (PHP/MySQL)

I have an inner join working when used in SQL, however when I try to integrete it into a function in my PHP it gives me a syntax error of "unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting ...

1 2 3 4 5 26