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.
1
vote
1answer
13 views
SQL: Order by column desc in another table
I have this SQL (SQLite database), which correctly gets the most recent message from the messages table grouped by conversation_id where the message has a conversation id other than 'none'.
SELECT * ...
0
votes
1answer
32 views
Select records from table with inner join and where condition
this is the first time I use the JOIN metohd and I don't get very well.
I have got this tables($SupportUserTable and $SupportUserPerDepaTable):
CREATE TABLE IF NOT EXISTS ...
1
vote
1answer
23 views
Joining Table with substring condition
I Have two tables :
create table t1(
id int unsigned not null auto_increment,
group varchar(3) not null,
number int unsigned zerofill,
used enum('YES','NO') default );
id group number used
1 ...
0
votes
2answers
41 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
44 views
SELECT from one table, JOIN on another table, ORDER BY a third table?
I have three tables for a forum application I am creating:
boards - represents a collection of posts, is_deleted boolean
posts - represents some text as well as a collection of comments
comments - ...
0
votes
0answers
43 views
When is JOIN executed in this case?
Let's say I select data from table "posts":
id | bigint(20) | PK
text | varchar(400)
and a table "likes":
user_id | bigint(20)
post_id | bigint(20)
those 2 fields are joined as ...
0
votes
0answers
44 views
Optimizing MySQL ORDER BY field of JOINed table
I have the following structure:
CREATE TABLE `tbl1` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`tid` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`time` datetime NOT NULL,
`count` int(11) NOT ...
0
votes
2answers
22 views
SQL Server - Missing records in join
I'm trying to accomplish the following using the below query:
Take all records from the Dial table and group based on various criteria contained within the table
Join the table to the History table ...
1
vote
3answers
39 views
Get related rows in one table using a table with relations
I have two tables. One stores the content records, the other one stores the relations between the content-records.
table "content" table "relations"
+---+-----+------+------+ ...
1
vote
1answer
21 views
In NHibernate, using a Disjunction gives double results
I'm trying to make a select with DetachedCriteria, I want to add several conditions seperated by OR at runtime.
If I use:
Restrictions.Or( cond1, Restrictions.Or(cond2, Restrictions.Or(cond3, ...
1
vote
1answer
23 views
I have a users table and amount table, I would like to show all users with amount even when the amount is null or zero
I am using mysql.
When I use JOINS like this
SELECT u.Id,u.FirstName,u.LastName,u.Email,SUM(a.Amount) Amount FROM users u LEFT JOIN amount a WHERE a.ExpenseDate >= '2013-05-12' GROUP BY u.Id
I ...
0
votes
1answer
26 views
How to get the sum of a created column from a joined table? SQL / C#
In ASP.NET / C#, I am working with two tables; Cart_LineItems and Products. I have joined the two tables and created a new column called "Extension" that has multiplied the "Products.UnitPrice" times ...
0
votes
2answers
27 views
turning table rows into columns in mysql
Say I have a database similar to the following:
Table student_info:
id name
111 jon
112 dan
113 david
...
and table scores:
item_id student_id score
01 111 37
02 ...
4
votes
4answers
73 views
Explode range of integers out for joining in SQL
I have one table that stores a range of integers in a field, sort of like a print range, (e.g. "1-2,4-7,9-11"). This field could also contain a single number.
My goal is to join this table to a ...
0
votes
1answer
22 views
SQL - In which order should i join my two tables?
I have the following tables :
CREATE TABLE IF NOT EXISTS "image_e"
(
"id" int unsigned NOT NULL AUTO_INCREMENT,
"title" varchar(32),
"alt" varchar(16) NOT NULL,
PRIMARY KEY ...
1
vote
3answers
32 views
how to add a random string between filename and file extension in JavaScript in one line?
I want to add a hashstring to file name, so I'm trying to rename the string.
This is what I have:
var x = "puh.jpg";
var y = x.split(".");
y.splice(1,0,"foo");
var z = y.join(".");
console.log(z)
...
1
vote
1answer
27 views
DBIx::Class: Counting entries with specific values in related table
I have the two MySQL tables humans and dogs:
TABLE humans:
id int, name varchar(32)
TABLE dogs
id int, human int, dead int
Every human can have zero or more dogs. If the dog is dead, then the ...
0
votes
2answers
29 views
MySQL Query optimisation for 3 linked tables
I've got a query that often shows up in mysqlslow.log like this...
# Query_time: 1 Lock_time: 0 Rows_sent: 12 Rows_examined: 18040
SELECT url, classname, cr_class, HDB_classlink.cr_cl
FROM ...
1
vote
2answers
41 views
Join table on already joined table
I'm struggling to put together a select statement that joins 3 tables.
Here's the database:
CREATE TABLE Beerstyles
(
style_id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
style_name ...
0
votes
3answers
23 views
MySQL select from database where not in
I need to clean records from one database according to that if they not exists in other.
It's kinda hard to explain it so here is example:
Table Users
-----------
id
username
password
Table Articles
...
1
vote
2answers
32 views
Selecting multiple rows from two tables in one go in MySQL
I have two tables:
products (id,title,price)
types (id,idProduct,type,additionalPrice).
I want to make a list that shows all the products and their subsequent types in the most efficient way ...
0
votes
2answers
26 views
Mysql multi joining tables with NULL values
I'm trying to do the following...
I have a PHPmyadmin database wit the tables: tasks, users and a table task_user.
For example I want to have all tasks from 2013-01-01, and a task can have multiple ...
1
vote
4answers
37 views
SQL complex select statement in store procedure
I have 3 tables in my database;
InfoTable,
FriendTable,
UsersTable
and their Fields are as follows
InfoTable
---------
Uid int,
Username varchar(256),
Address varchar(256),
FriendTable
...
0
votes
1answer
11 views
Combine data from multiple tables in a single XML Tag
I have two tables, TB1 - RndString and TB2 - Time
For example,
Values in TB1 are "I get up at ", "I sleep at ", "I have lunch at "
Values in TB2 are "7:00", "22:00", "13:00"
I want to combine the ...
0
votes
1answer
12 views
hibernate criteria: get a specific class
Assume the following classes model: (written from memory)
@Entity
@Table(name="BULLETIN_MESSAGE")
public class BulletinMessage {
@OneToMany
@JoinColumn(name="BULLETIN_ID")
private ...
-3
votes
1answer
14 views
Entity framework using vb.net,stored proc and involve multiple tables
I have a person table with first name,last name, phoneid other details.
The phoneid is an identity column in Phonetable.
I need to add/update the person info.
First, it should check if the phone ...
0
votes
2answers
25 views
MySQL: Comparing records within the same table to each other
In a database that represents a store, I have the following table:
table name:
CLIENTS_PRODUCTS
columns:
client_id (INT)
product_name (CHAR(256))
As you can see, each product purchase is ...
1
vote
1answer
22 views
What's the simplest way to include the COUNT of associations in a SQL query?
Say I have a [Products] table, and a [Products.record] can have many [Sales.records] associated with it.
I want to have a single dataset that gives me number of sales a product has. Of course a ...
0
votes
1answer
23 views
Error when trying to compile a user information list with MySQL using a join and a nested select
I am wondering why this MySQL query is not working.
MySQL is reporting "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to ...
0
votes
1answer
22 views
mysql update for five tables
I have looked and looked, mostly at UPDATE with multiple tables. Once or twice I searched specificially with 5 tables. The examples mostly show only two tables.
When I run the code below I get this ...
0
votes
2answers
23 views
SQL join on multiple columns in same tables
I have 2 subqueries, but I'm having trouble joining columns together from the same tables. I tried:
SELECT * FROM
(SELECT userid, listid
FROM user_views_table
WHERE date='2013-05-15' AND ...
0
votes
1answer
26 views
SQL Sum() - 0 in field excluding row from aggregation?
Consider the following query:
$query = "
SELECT a_orders.id, a_orders.billing,
SUM(a_order_rows.quant_refunded*a_order_rows.price*((100-a_orders.discount)*.01)) as refund_total,
...
-1
votes
3answers
24 views
SQL Query for Conditional Join
I have the following 3 tables. I need a single query to select from table 1 if either a matching record is found in table 2 or table 3.
Table 1:
RecordID,
GroupID,
Name
Table 2:
RecordID (which is ...
3
votes
2answers
48 views
Big-Oh Performance of an Inner Join on Two Indexes
I am trying to figure out the Big-Oh performance of the following query:
SELECT *
FROM table1 INNER JOIN table2 ON table1.a = table2.b
GROUP BY table1.a
table1.a is the primary key of the table. ...
0
votes
0answers
18 views
Doctrine 2 - Outer join query
In the context of the SonataAdminBundle / SonataUserBundle, I'm using the query builder to add static filters to the "list" query :
With this query, I get only users in the group "Juge", the query ...
1
vote
2answers
32 views
Left Outer Join, No result in final query
I'm executing the following query
Select * from A a left outer join B b on (b.id = a.id)
I'm getting one record from A and no records from B. I'm expecting one record in final select query but ...
0
votes
0answers
50 views
Yii MANY_MANY on clause
I have the following tables in my database.
subscriber(
subscriber_id int,
status char(1),
...
)
sendlist(
sendlist_id int,
...
)
subscriber_list(
subscriber_id int,
...
3
votes
2answers
54 views
How do I get this Linq query with custom join into a DataSet?
I cannot seem to get past the anonymous type used by Linq's select clause when using join. I want to put my query result into a datatable. Here's what I have in memory at runtime...
DataTable1 ...
0
votes
1answer
35 views
SQL database, Need max date for pivot table
Here is my issue. I have a sub query that has several joins (one of the tables do not have a person_id) I have a pivot table created off this data and receive the results of 6 rows for my test data. ...
1
vote
1answer
18 views
Mysql join query on multiple tables
I have three tables and in those tables these basic fields
contacts
con_id (primary key)
con_name
con_work_id
con_country_id
work
work_id (primary key)
work_company_name
work_country_id
...
1
vote
1answer
39 views
Joining two tables in a complex query (not uniform data)
I need to connect two tables in a query that I will use to insert data to third table (used in the future to join the two). I will mention only relevant columns in these tables.
PostgreSQL version ...
0
votes
0answers
12 views
JOIN in ArcGIS with relationship classes
I have a question regarding Esri ArcGIS.
I have a street dataset where each street segment has its own id. Additionally, I have a table where certain routes are defined (each route has its own id ...
1
vote
4answers
37 views
SQL query for combining rows that have overlapping dates in separate columns
this is an odd question. let me lay out my table structures...
my 'server' table gives me status information of my servers (i get a few of these messages every minute). my 'client' table is updated ...
3
votes
0answers
18 views
Cross-database join in Flask-SQLAlchemy
I'm trying to do a cross-database join in Flask-SQLAlchemy:
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = '...Master...'
app.config['SQLALCHEMY_BINDS'] = { 'Billing': '...Billing...' ...
0
votes
0answers
76 views
Multi-threading C# with Join
I have the following scenario that is implemented in multiple threads in C#
Different users can subscribe to the ProcessState and register their parameters that they want to query. The ProcessState ...
0
votes
2answers
31 views
PGSQL - Joining two tables on complicated condition
I got stuck during database migration on PostgreSQL and need your help.
I have two tables that I need to join: drzewa_mateczne.migracja (data I need to migrate) and ibl_as.t_adres_lesny (dictionary I ...
0
votes
0answers
10 views
How to apply join on differenr field name in grocery crud
I have two tables with these schema:
users(id, name, email) user_details (user_id, physical_address,
other_info)
i want to join both table with in grocery crud on id and user_id like
...
0
votes
1answer
34 views
Three left joins in a row return unexpected result
So, I have this sql query:
select
o.id,
o.name,
d.name,
w.day,
o.suspended
from resource o
left join resource d on d.vehicle_ID = o.ID
left join week_days_availability_to_resource aw ...
0
votes
5answers
64 views
Transform SELECT statememnt to JOIN
I have a sql statement like :
SELECT a.status_id,
(SELECT batch_name
FROM pf_req_batch
WHERE batch_id = (SELECT batch_id
FROM pf_m_req_batch
...
2
votes
2answers
38 views
Copy one column value to another
I have a table that has the following values
sno package id
66 250 111
66 0 100
66 0 99
66 0 88
67 270 225
67 267 111
67 ...

