0
votes
2answers
18 views
SQL to Linq translation with inner join and 2 left joins (with sub-query)
Hi there! I have the following query which works fine in SSMS. Im using LinqPad (C#) but really puzzling to succeed with the left outer join in LinqToSql:
SELECT DISTINCT
A.Loc …
0
votes
1answer
21 views
MYSQL fetch 10 posts, each w/ vote count, sorted by vote count, limited by where clause on posts
I want to fetch a set of Posts w/ vote count listed, sorted by vote count (e.g.)
Post 1 - Post Body blah blah - Votes: 500
Post 2 - Post Body blah blah - Votes: 400
Post 3 - Pos …
0
votes
1answer
28 views
Is an outer join possible with Linq to Entity Framework
There are many examples of outer join using Linq to Sql, all of them hinging on DefaultIfEmpty() which is not supported with Linq to Entity Framework.
Does this mean that outer jo …
2
votes
3answers
40 views
MYSQL DATE function running insanely slow in LEFT JOIN
When adding the line:
LEFT JOIN core_records_sales as sales ON DATE(appointments.date) = DATE(sales.date_sold)
To my query, it boosts the time for the script to run from about 8 …
0
votes
3answers
183 views
SQL LEFT outer join with only some rows from the right?
Hi noble SOuls,
I have two tables TABLE_A and TABLE_B having the joined column as the employee number "EMPNO".
I want to do a normal left outer join. However, table B has certai …
0
votes
2answers
23 views
Limiting Access by Permission
Hi, thanks for viewing this. I have a db that has users, roles & user_roles.
What I am trying to achieve is a login that will select users who have Admin or Associate permissio …
0
votes
1answer
44 views
MySQL Select Statement - Two Tables, Sort One Table by Count of Other Table
So I have built a voting system for a custom post system i wrote.
I want to be able to sort by "most voted", "Most liked", etc.
I have two tables.
Entry: ID, Title, Post
Vote: …
1
vote
2answers
51 views
Why does my MySQL MATCH() AGAINST() query fail with columns from LEFT JOIN’d databases?
I've got a MySQL query somewhat like the following:
SELECT *
FROM products
LEFT JOIN descriptions ON products.DescriptionID = descriptions.ID
WHERE MATCH (name, overview, specs …
1
vote
3answers
88 views
What is going on inside when I run left join?
I have a question regarding left join on SQL: I would like to know how SQL servers perform left join?
Let's say I have two tables.
PEOPLE
id
name
PHONE
id
person_id
phone
…
3
votes
2answers
43 views
MySQL: Is there a way to LEFT JOIN conditionally? (or similar?)
I'm writing a query to get ALL of the products in the products table, and the sale price for each product IF a record exists for that item in the specials table.
What I'm looking …
0
votes
1answer
36 views
LINQ Query to return a list of records that do NOT have an associated record in the join.
What is the most efficient way to return a query where the result set is those records that do NOT have an associated record? I am using LINQ and Visual Basic and have been trying …
1
vote
3answers
38 views
Retrieving MYSQL Join values from PHP
I have two or more tables which hold values under the same column name. Now when I join these two tables the column names stay the same. When retrieving these values in PHP ($row[' …
0
votes
2answers
34 views
GROUP_CONCAT and LEFT_JOIN issue - Not all rows returned
Let's say my DB Scheme is as follows:
T_PRODUCT
id_product (int, primary)
two entries: (id_product =1) , (id_product =2)
T_USER
id_user (int, primary)
id_product (int, foreign k …
1
vote
1answer
37 views
Fetching join using @JoinTable with SQLQuery
I have a mapped entity with a property "latestHistory", which is mapped through a join table, like:
class Record {
@OneToOne(cascade = { CascadeType.MERGE, CascadeType.PERSIST, …
0
votes
2answers
84 views
Building conditional statement across multiple models (CakePHP 1.2.5)
Let's say I have 3 models: User, Region, Country.
User belongsTo Region
Region belongsTo Country
Each of these models is using the Containable behavior. I'm attempting to find …
