Tagged Questions
The cross-join tag has no wiki summary.
22
votes
2answers
5k views
8
votes
6answers
4k views
sql cross join - what use has anyone found for it?
Today, for the first time in 10 years of development with sql server I used a cross join in a production query. I needed to pad a result set to a report and found that a cross join between two tables ...
5
votes
2answers
2k views
Mixing implicit and explicit JOINs
I am having a problem with Hibernate generating invalid SQL. Specifically, mixing and matching implicit and explicit joins. This seems to be an open bug.
However, I'm not sure why this is invalid ...
4
votes
2answers
514 views
Is CROSS JOIN a synonym for INNER JOIN without ON clause?
I am wondering whether CROSS JOIN can be safely replaced with INNER JOIN in any query when it is found.
Is an INNER JOIN without ON or USING exactly the same as CROSS JOIN? If yes, has the CROSS JOIN ...
4
votes
2answers
464 views
Cross join behaviour (SQLServer 2008)
I have been trying to track down a problem with a query I have. The query is actually generated by hibernate from HQL but the resulting SQL doesn't do what I expect. Modifying the SQL slightly ...
4
votes
4answers
2k views
SQL Server: What is the difference between CROSS JOIN and FULL OUTER JOIN?
What is the difference between CROSS JOIN and FULL OUTER JOIN in SQL Server?
Are they the same, or not? Please explain. When would one use either of these?
4
votes
3answers
123 views
What does this MySQL statement do?
INSERT IGNORE INTO `PREFIX_tab_lang` (`id_tab`, `id_lang`, `name`)
(SELECT `id_tab`, id_lang, (SELECT tl.`name`
FROM `PREFIX_tab_lang` tl
WHERE tl.`id_lang` = (SELECT c.`value`
...
3
votes
1answer
122 views
combinations (not permutations) from cross join in sql
If I have a table that I'd like to cross join to itself, how can I remove the duplicate rows? Or to put it another way, how can I do a "order doesn't matter" cross join?
So for example, if I have a ...
3
votes
2answers
188 views
Why does Sql Management Studio add a cross join?
I sometimes need to run basic updates on a join. For example:
UPDATE t1 SET col1 = 'val1'
FROM table1 as t1
INNER JOIN table2 as t2
ON t1.ID = t2.t1_id
WHERE t2.col3 = 'val3'
This works perfectly, ...
2
votes
4answers
66 views
Trying to convert cross join transact-sql into LINQ
I'm trying to get my head around this cross join (something that I've never seen before) so that I can convert into LINQ. I'm not exactly sure what its trying to do:
Select various a,b,c,d, and e ...
2
votes
3answers
37 views
Is it possible to implement JOIN queries with 2 Mysql Databases?
I am working in Moodle and CodeIgnitor together in one project; a few of my tables are in moodle db and other tables are in another database.
Is it possible to implement JOIN queries with two Mysql ...
2
votes
5answers
133 views
Super slow query with CROSS JOIN
I have two tables named table_1 (1GB) and reference (250Mb).
When I query a cross join on reference it takes 16hours to update table_1 .. We changed the system files EXT3 for XFS but still it's ...
2
votes
2answers
105 views
mysql cross join, but without duplicated pair?
Let's say I have the following row in my table
table rows
id
63
64
65
66
67
68
if I run the following query, I get 30 rows.
SELECT r1.id, r2,id
FROM rows AS r1
CROSS JOIN rows AS r2
...
2
votes
2answers
236 views
Eliminating a Cross Join in SQL
I am trying to optimize a query that contains a cross join. I have large query that I proceed to cross join with a derived table.
Would it improve the speed of the query by turning the derived ...
2
votes
2answers
201 views
SQL Running Total using CROSS JOIN
Need running total of a table based on date and another column. Say I have the following table called Sales:
Day Client
1 Smith, J
3 Johnson, B
6 Fuller, A
7 Smith, ...
2
votes
2answers
65 views
problem in query [closed]
I have more tables that I want to cross join them and I want to show each table with fields like this:
tb1.filed1 tb1.filed2 tb2.filed1 .....
What should I do? How can i select fields with ...
2
votes
5answers
2k views
Massive CROSS JOIN in SQL Server 2005
I'm porting a process which creates a MASSIVE CROSS JOIN of two tables. The resulting table contains 15m records (looks like the process makes a 30m cross join with a 2600 row table and a 12000 row ...
1
vote
3answers
47 views
SQL cross join on temp table slow results
Have added the following code to my SQL query: (Note cut down version)
DECLARE @rowType AS TABLE (
rowTypeLabel NVARCHAR (20));
INSERT INTO @rowType
VALUES ('Cumulative');
INSERT INTO ...
1
vote
4answers
74 views
Cross Join! In SQL Server, but I really only need about a third of the rows?
Ok, so I'm not sure if I'm going about this the right way. But my scenario is I've got a stored procedure I'd like to test using all the possible combinations of the inputs it takes.
Let's say I have ...
1
vote
1answer
41 views
Display mutiple categories for single entry
I have the following tables:
Category table which has an ID column, a description column, and category parent ID columns as follows:
cat_id | cat_description | cat_pid
...
1
vote
2answers
185 views
SQL Server 2008 using SUM() OVER(ORDER BY…)
I am trying to use a CTE and CROSS JOIN the result set. I want to sum up the 4 rows leading up to the current row. The example online I found does not use a CTE, only a newly created table ...
1
vote
1answer
55 views
Is it possible to cross-join a row in a relation with a tuple in that row in Pig?
I have a set of data that shows users, collections of fruit they like, and home city:
Alice\tApple:Orange\tSacramento
Bob\tApple\tSan Diego
Charlie\tApple:Pineapple\tSacramento
I would like to ...
1
vote
1answer
207 views
Merge two MDX resultsets from the same measures group
I am trying to merge the result of two separate MDX queries, where the measures are from the same measure group. The cube design is based on a lifecycle transaction model, where the date are all role ...
1
vote
1answer
45 views
Way to check for recursive foreign keys
Say I have a table named EMPLOYEE, and the table has a field called ManagerID. This field is a FK to another record of the EMPLOYEE table of who their manager is. What is an ideal way to verify that ...
1
vote
2answers
141 views
subquery automatically producing cross join
I am not certain WHY but when I follow the example (from the northwind datase in a ms sql erver)
to do a subquery on microsoft sql server management studio 2008 by typing in the code like shown ...
1
vote
2answers
121 views
performance of cross join
I am building a photo content webpage. In order to make all the combination of content, I use cross join. Let's say I have the following simple table:
table photos
id filename
------------
1 ...
1
vote
4answers
169 views
SQL CROSS JOIN question
I am having a bit of trouble with my SQL query.
I have two tables:
Table1
id guid title D0 D1 D2
-----------------------------------------
1 guid1 Title1 0.123 -0.235 0.789
2 ...
1
vote
0answers
858 views
Doctrine: Unable to execute either CROSS JOIN or SELECT FROM Table1, Table2?
Using Doctrine I'm trying to execute either a 1. CROSS JOIN statement or 2. a SELECT FROM Table1, Table2 statement. Both seem to fail.
The CROSS JOIN does execute, however the results are just ...
1
vote
2answers
145 views
Are these cross joins causing me problems?
I have a poor man's replication setup that I can't do anything about. Some identifying data (basically primary key) from a call_table is copied into another table via a simple trigger, and then the ...
0
votes
2answers
31 views
MySQL select from table 2 same as table 1
I have two tables
"employers":
emp_id empl_name wage
1 john 20/h
2 mike 20/h
3 sam 30/h
"positions":
pos_id emp_id pos_name ...
0
votes
1answer
46 views
SQL - Query Select Joins through multiple tables
Here is the situation:
I search for Persons with ID (empr.empr_cb)
that has bill(s) to pay (transactions.montant)
this refers to transactions.compte_id
which is identical to comptes.id_compte
this ...
0
votes
2answers
52 views
CROSS JOIN filter
I need to 'manufacture' records for a query, but at the same time, restrict the list of values that are returned from a 'lookup' table.
Is there a way to use 'filter' a CROSS JOIN without having to ...
0
votes
3answers
138 views
Are Mondrian / OLAP the wrong tool for joining large dimensions/sets?
Summary: Most of the examples I've seen of MDX joins have involved joining relatively small sets, say with tens or hundreds of items each. But I find myself also wanting to try joining (in particular ...
0
votes
1answer
103 views
SQL: Matching records by set theory
I've been struggling lately with a complex SQL query.
I have the following tables:
[dbo].[User] ~ {ID,nickname}
[dbo].[Property] ~ {ID,title}
[dbo].[Property_Values] ~ [ID,propertyID,title}
...
0
votes
1answer
22 views
Cross Join in SQL 2005 with like
Below are two queries. I get correct returns in Access but NO returns in SQL. Is my syntax in the SQL version wrong? Curiously, even if I leave out the second part of the WHERE statement, the ...
0
votes
1answer
35 views
CROSS JOIN and UPDATE THIRD TABLE doesnt work
I have the following issue. We have two tables that look like that :
[t1]
Ruler ID1 S1 E1
**1 a 1 10**
1 b 17 24
1 c 20 24
1 d 21 24
*2 e 40 47*
...
0
votes
0answers
57 views
Can somebody help me in converting this query into LINQ
Can somebody please help me to convert this query into LINQ please
select tab1.* from city tab1
cross join
(select convert(decimal(18,12),latitude)+1 maxlat,
...
0
votes
2answers
69 views
How do I cross join the date to a selection?
I need a query that will have the date, a user's name, and one of twelve operation_id's for that date. eg
operations
"id";"name";
"1";"LASER CUTTING"
"2";"DEBURR"
"3";"MACHINING"
"4";"BENDING"
...
0
votes
1answer
72 views
Can I use crossjoin in WHERE statement in MDX?
Can I use CROSSJOIN in my WHERE statement? I need to take {[Product Attribute].[Attribute Code Number] and [Product Attribute].[Attribute] and compare them. There is a corresponding Code Number to a ...
0
votes
0answers
34 views
Insert missing dates and data in calendar (previous row issue), cross-join
We have an inventory of rooms that are reserved for future dates. On any particular date in time, I need to know how many rooms are committed for a particular day, month or year by office.
I have ...
0
votes
4answers
97 views
Cross Join difference question [closed]
Possible Duplicates:
WHERE clause better execute before IN and JOIN or after
INNER JOIN versus WHERE clause — any difference?
What, if any, are the differences between the ...
0
votes
3answers
83 views
Join 2 records in 1 table with 2 records in another table to produce 2 records
I have 2 tables with lots of data that I need to join. The problem is that the 2 tables hold mostly the same data, and the join sometimes produces undesired, though not unexpected. results. Here is ...
0
votes
1answer
231 views
SQL to Linq conversion with cross join
Can someone please help in converting the following sql to linq in c#?
select s.SYSTEM_NAME,
r.RESET_CODE,
COUNT(v.reset_code)
from (select distinct system_name
from tbl) ...
0
votes
2answers
130 views
Cross join ignores where clause
Table: Shopping
shop_id shop_building shop_person shop_time
1 1 Brian 40
2 2 Brian 31
3 1 Tom 20
4 3 Brian 30
Table: buildings
building_id building_city
1 London
2 ...
0
votes
2answers
227 views
Cross Join followed by Left Join
Is it possible to do a CROSS JOIN between 2 tables, followed by a LEFT JOIN on to a 3rd table, followed by possibly more left joins? I am using SQL Server 2000/2005.
I am running the following query, ...
0
votes
1answer
481 views
Crystal Reports - Include null values in all report groups
I have some data that shows the number of visits a person has done to all companies in our database. What I would like to do is show a report of all the visits and all the ones they haven't visited, ...
0
votes
4answers
853 views
Faster CROSS JOIN alternative - PostgreSQL
I am trying to CROSS JOIN two tables, customers and items, so I can then create a sales by customer by item report. I have 2000 customer and 2000 items.
SELECT customer_name FROM customers; --Takes ...
0
votes
2answers
447 views
Self-Joins, Cross-Joins and Grouping
I've got a table of temperature samples over time from several sources and I want to find the minimum, maximum, and average temperatures across all sources at set time intervals. At first glance this ...
0
votes
2answers
370 views
Is the performance of SQL Server cross joins with conditionals in the where statement the same as inner joins with conditionals in the join's on statement?
I am trying to determine the performance of a piece of generated SQL that runs in SQL Server 2005.
It uses CROSS JOINS, but the conditionals tying the cross joined tables are in the where statement.
...
0
votes
2answers
1k views
Cross join (pivot) with n-n table containing values
I have 3 tables :
TABLE MyColumn (
ColumnId INT NOT NULL,
Label VARCHAR(80) NOT NULL,
PRIMARY KEY (ColumnId)
)
TABLE MyPeriod (
PeriodId CHAR(6) NOT NULL, -- format yyyyMM
Label ...