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.
2
votes
0answers
49 views
MySQL Selecting twice from one table and once from another
After 3 days, I'm still having some trouble with selecting certain things in the right amount from MySQL.
I'm currently working on a forum script, so my goal is to select the category, and forums ...
0
votes
0answers
2 views
nested list always return all in hibernate Please help me
here is my .xml class that describe relation between both table
--------Parent Table Mapping-----------
<class name="Att" table="ATT" >
<id name="periodNo" type="int">
...
0
votes
2answers
12 views
SQL select from generate_series, filtering by user_id removes series?
I have a complicated (to me) SQL query in postgresql 9.2.4 using generate_series and multiple joins. I need to sum the reps for all exercises on a particular day from the exercise table, and make sure ...
0
votes
1answer
61 views
select records both ways from same table?
i have to select records from two tables, but combine them in a way, here is my table
loans
----
id
amt
date
pay_period
borrower_id
lender_id
the user table
users
-----
id
name
phone
this is the ...
2
votes
1answer
41 views
joining records from 3 tables
i tried to join records from two tables which have the following schema
users
----
name
phone
email
sales
----
seller_id
buyer_id
amt
date
here is my sql
Select
sales.amt,
sales.date,
...
0
votes
1answer
23 views
Join PropertyInfo[] with iEnumerable<T> where every PropertyInfo.Name equals any T.variableContent
Im working with C# reflection and couldn't find a way to solve this.
I want to join a list of PropertyInfos where the listed field names matches contents in a variable of any element of T.
It's ...
0
votes
1answer
24 views
Use DISTINCT properly joining multiple tables
SELECT * FROM f_posts
INNER JOIN f_topics
ON f_posts.post_topic=f_topics.topic_id
INNER JOIN f_subcategories
ON f_subcategories.scat_id=f_topics.topic_scat
ORDER BY f_posts.post_date
DESC LIMIT 0,3
...
1
vote
1answer
42 views
Perl join and split operation
I tried a small test :
to replace x in x|y|z|a with w
so i tried:
echo "x|y|z|a" | perl -lne '@arr=split /|/;$arr[0]='w';$_=join "|",@arr;print $_;'
it gave me:
> echo "x|y|z|a" | perl -lne ...
2
votes
2answers
25 views
Mysql double select or inner join
I have two MySql tables.
One of them stores general data about a product (name, image, description).
table name: product
table fields: id, name, desc, brand, image, status
The second one stores ...
0
votes
3answers
58 views
jQuery remove text from HTML tag
I am having problems using a regex to extract the <h1></h1> tag.
I have the variable:
var t = '<h1>Some cool text in this tag</h1>';
and I want to make it like this:
...
2
votes
2answers
37 views
Fetch data from more than one tables using Group By
I am using three tables in a PostgreSql database as:
Customer(Id, Name, City),
Product(Id, Name, Price),
Orders(Customer_Id, Product_Id, Date)
and I want to execute a query to get from them "the ...
0
votes
2answers
22 views
Reduce subquery to join
I'm so sorry for the question it has been asked many times on the net but I don't understand how to optimize my subquery:
SELECT *
FROM rp_clientAffectationHistory as T1
WHERE ...
1
vote
1answer
37 views
MySQL LEFT JOIN Multiple Conditions
I have two tables: A and B linked by "group_id".
2 variables I'm using: $keyword, $_SESSION['user_id']
A
group_id
keyword
B
id
group_id
user_id
I want to be able to select all the groups that this ...
-2
votes
2answers
24 views
select from table values by data from another table
I have 2 tables
PRODUCTS
id | property1 | property2|property3 |category
--------------------------|--------------------
1 | trousers | red |UK | 1
2 | shoes | blue |USA ...
1
vote
2answers
20 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
34 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
24 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
45 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
45 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
44 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
46 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
23 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"
+---+-----+------+------+ ...
2
votes
1answer
26 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
24 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
29 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
28 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
87 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
35 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
31 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
42 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, HDBclsslnk.cr_cl
FROM ...
1
vote
2answers
42 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
24 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
28 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
38 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
14 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
13 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
17 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
23 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
25 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
50 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
19 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 ...
