0
votes
2answers
29 views
Procedurally transform subquery into join
Is there a generalized procedure or algorithm for transforming a SQL subquery into a join, or vice versa? That is, is there a set of typographic operations that can be applied to a …
2
votes
4answers
93 views
SELECT TOP 1 in a many to many query
I have a faily simple many to many schema, which looks like this:
What I'm trying to do is select all players with some arbitary conditions and I also want to select their most re …
5
votes
5answers
103 views
Simplest way to do a recursive self-join in SQL Server?
What is the simplest way of doing a recursive self-join in SQL Server? I have a table like this:
PersonID | Initials | ParentID
1 CJ NULL
2 EB 1
…
1
vote
1answer
18 views
MySQL joining four tables and using WEEK and DATEDIFF to get current data?
Hi!
I'm trying to write a query getting information from four tables and I'm not able to figure it out. Can someone please help me with some guidance?
The model is that a user ca …
0
votes
4answers
42 views
SQL Joins, Count(), and group by to sort ‘posts’ by # of yes/no ‘votes’
I have posts, votes, and comments tables. Each post can have N 'yes votes', N 'no votes' and N comments. I am trying to get a set of posts sorted by number of yes votes.
I have a …
0
votes
2answers
40 views
linq query from more tables
public ActionResult myItems() {
var dataContext = new RecordsDataContext();
MembershipUser myObject = Membership.GetUser();
string CurrentUserName …
0
votes
7answers
41 views
difference between join and no join select ?
Greetings all,
I see no difference between the two queries below:
query_join = select a.id, b.name, a.telephone, a.description from tb_industry a left outer join tb_sector b o …
1
vote
6answers
82 views
Tips or tricks for translating sql joins from literal language to SQL syntax?
I often know exactly what I want, and know how tables are related in order to get it, but I have a real hard time translating that literal language knowledge to SQL syntax when it …
0
votes
1answer
13 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
5answers
40 views
MySQL deleting multiple columns from two table
Hello. I have Two tables like this:
Table categories:
columns: id, name, parent
1, Foods, 0
2, Drinks, 0
3, FastFood, 1
4, Hamburger, 3
Table documents:
columns: id, name, catego …
0
votes
1answer
40 views
Linq with array
Dim Cozinhas as string = "1, 2, 3"
Dim FiltroCozinha() As String = Cozinhas.Split(",")
Dim Empresas = (From E In lstEmpresas _
Group Join CE In lstCozinhasEmpresas …
0
votes
3answers
59 views
Select from multiple tables matching multiple criteria
Hello,
I am working with 3 tables, trying to pull a list that match certain criteria.
I need a list of companies from the companies table, that have an active opportunity (iactive …
0
votes
1answer
40 views
Can’t use “Skip” in LINQ query
I have a linq query in which I need to specifically do a left join. However when I attempt to commit a lambda Skip function on the query it errors and says that the skip cannot be …
0
votes
4answers
54 views
MYSQL Inner Join with 2 ON Clauses
I am trying to setup a simple database in which I have a user and store both their residential and postal address. I have 2 tables
Users
id (Primary Key)
name (Varchar 255)
…
1
vote
1answer
34 views
Linq - How to turn IQueryable<IEnumerable> into IQueryable
Hi,
I have a simple linq statement that isn't quite returning what I would like. I understand why, I just don't know how to wriet it to get what I want.
The query is as follows:
a …
