-1
votes
2answers
22 views

SQL: Select Foreign Records Using Complex Join

I want to select a "site" record(s) randomly, and then get the related "channels" for it. Here's what I've tried that doesn't work. Please help. Thank you! SELECT A.*, B.* FROM ( ...
0
votes
1answer
27 views

I need get all records from table joined where at least one case with condition

I have three tables: cp_projeto (id, nome...) cp_habilidade_projeto (id, id_projeto) cp_habilidade (id, nome...) I need all projects with all cp_habilidade where cp_projeto have one ...
0
votes
1answer
35 views

Postgres:Get the latest record from a table

I have two tables which I use to fetch data and from this data I want to identify the records which are lastest related to a particular value. My first table is : g_190048( id, ...
0
votes
1answer
40 views

SQL Server 2008 Issue With GROUP BY

SELECT ETRN_MFTransactionGroup.FolioNumber, ETRN_MFTransactionGroup.PrimaryApplicantContactID, ETRN_MFTransaction.PK_TransactionGroupID AS Expr1, ETRN_MFTransaction.PK_SchemeProductID, ...
1
vote
5answers
48 views

SQL - Can't check if NULL

If I have the following SQL: SELECT * FROM users LEFT JOIN friendship ON users.username = friendship.user_name I get the following result But if I add the following WHERE at the end, I don't get ...
0
votes
0answers
31 views

(mySQL) Selecting Person(with same name, address, income) who have 3 or more Friends

I'm(newbie in SQL) trying to query the database to find all person who have 3 or more friends with the same data(name, address, income)but I could not figure out the correct query. (below are my ...
0
votes
3answers
27 views

Getting name from other table with joins

I have a table with logs: LOGGING (300 rows): - id - type_id - timestamp - notes And a table with logging types: LOGGING_TYPES (4 rows): - id - typename The field logging.type_id links to ...
1
vote
3answers
37 views

Syntax errors in MS Access converting from SQL

From my earlier question subqueries-on-subqueries I'm now trying to put this into access The code is from answer one on the link, copied and pasted exact with the exception of putting ...
0
votes
2answers
19 views

SQL Implicit Join joining 3 tables

I understand implicit JOINS are outdated but it's for a homework assignment. All his examples for implicit joins only join 2 tables, and I can't find an example anywhere that joins 3. SELECT Name ...
0
votes
2answers
51 views

Join from 3 tables

I'm trying to join 3 tables in a view; here is the situation: I have a table PROJECTS that contains information of projects. table structure (id primary key, project_id. I have another table ...
0
votes
2answers
44 views

SQL Join issue returning NULL values

I am having trouble running a query over three tables: users, user_teams, user_messages I wish to create a report where a line manager can see the total for incoming mail and outgoing mail for all ...
2
votes
3answers
24 views

Last record query in two linked tables

I have a table called 'Purchases': PurchaseID, PurchaseDate, Vendor ╔════════════╦══════════════╦════════╗ ║ PurchaseID ║ PurchaseDate ║ Vendor ║ ╠════════════╬══════════════╬════════╣ ║ ...
0
votes
1answer
38 views

SQL get last messages from/to certain user

I'm trying to make SQL query from table, - get last messages from all pairs of users with user 36 as sender or recipient, and join them with users table to get names. I've managed to create something ...
2
votes
1answer
31 views

SQL multiple join tidy up

I have this statement: SELECT board.*,numlikes FROM board LEFT JOIN ( SELECT pins.board_id, COUNT(source_user_id) AS numlikes FROM likes INNER JOIN pins ON pins.id = likes.pin_id ...
0
votes
1answer
60 views

SQL Join doesn't show up correctly

i'm trying to find a solution, i'm trying to get a data from different tables using same id. Here is my code "SELECT * FROM menucat LEFT JOIN vmenutab ON menucat.cat_id = vmenutab.menu_id"; I need ...
0
votes
1answer
25 views

Joining sql statements

I have this statement: SELECT board.*, numlikes FROM board LEFT JOIN (SELECT pins.board_id, COUNT(source_user_id) AS numlikes FROM likes INNER JOIN pins ON ...
0
votes
2answers
19 views

Counting codes from one table in multiple tables returning 0s

I am new to SQL and databases. I'm using them to code data for an academic paper (assign relevant information tags to various sentences). I've looked around, but my newness to SQL might have me ...
0
votes
2answers
46 views

SQL person duplicates

How can I eliminate the duplicates of the persons. SELECT Persons.Id, Activity.Activity, Activity.Description, Activity.StartDate, Activity.EndDate FROM Activity INNER JOIN Login_Activity ON ...
0
votes
5answers
51 views

Join only if field is more than zero

Instead of making 2 queries could I somehow just join persons if houses.owner_id is greater than zero? SELECT * FROM houses INNER JOIN persons ON persons.id = houses.owner_id WHERE houses.id = id
2
votes
5answers
57 views

SQL. How to combine subquery and join correctly?

I need to list the customer name(s) and their project title(s) that has employee GLC working on a task but not employee CAC working on a task.** I tried the following, but got an empty set: select ...
1
vote
1answer
39 views

do database JOINs make many copies of data in left and right sides of join?

I'm curious: do databases return JOINs as the results of two (or more) SELECT statements with pointers from (segments of) rows in the left side to (segments of) rows in the right, or do they return ...
6
votes
1answer
288 views

2 Outer Joins on Same Table?

Here is a question which has been boggling me for few days now, and I searched and searched but couldn't find any convincing answer ! Simple question, why is it restricted to have 2 Outer Joins in ...
0
votes
1answer
26 views

Select count from multiple tables

I have a table containing a list of patterns that I use elsewhere. Patterns: Top Bottom Middle I also have multiple other tables that act as holding areas for data which each contain a pattern ...
1
vote
3answers
39 views

SQL Server : Filter Result by CSV String

This one is very tricky... Products table -> products have multiple colors.. I want a a stored procedure that brings back products WITH certain colors.. For example, a Santa Hat would have "Green" ...
1
vote
4answers
33 views

Multiple sql table select

There are tables with clients and festivals. Every festival happens every year (like New Year). But not every client is invited on any festival. I need to get woman clients, that were invited on ...
0
votes
1answer
32 views

Get result headers with table name

I might have not the right vocabulary because I can't find any result, but I will try to be clear: I'm doing some SQL joins using the abstraction class from CodeIgniter (Active Record) but I have ...
1
vote
2answers
70 views

LEFT JOIN Significantly faster than INNER JOIN

I have a table (MainTable) with a bit over 600,000 records. It joins onto itself via a 2nd table (JoinTable) in a parent/child type relationship: SELECT Child.ID, Parent.ID FROM MainTable AS ...
1
vote
4answers
52 views

Multiple conditions on the joined table when using group by

I have two tables: products id name 1 Product 1 2 Product 2 3 Product 3 products_sizes id size_id product_id 1 1 1 2 2 1 3 1 2 4 3 ...
0
votes
4answers
28 views

How to determine which columns are shared between two tables?

Very new to SQL Sever here... I understand the concept of joining tables, etc. but what is the easiest way to determine which columns are shared? Say for instance we have Table 1 and Table 2, assume ...
4
votes
2answers
43 views

MySQL select based on ENUM values

I have a a suppliers directory table in a MySQL database which has an associated suppliers mappings table. This table maps the following criteria against an individual supplier: Services. ...
0
votes
3answers
44 views

SQL query - Joining a many-to-many relationship, filtering/joining selectively

I find myself in a bit of an unworkable situation with a SQL query and I'm hoping that I'm missing something or might learn something new. The structure of the DB2 database I'm working with isn't ...
1
vote
2answers
68 views

SQL Left join: selecting the last records in a one-to-many relationship

I have a customer table, and a detail table. I want to want to pull a record for every customer in the table and show the latest detail data on that customer where applicable. Currently my where ...
0
votes
1answer
32 views

SQL server join tables and pivot

I have two tables with data TABLE 1 --------------------------------------------------- | SALEID | SOLDBY | SALEPRICE | MARGIN | DATE | | 1 | 'aa' | 10,000 | 10 | ...
0
votes
3answers
34 views

SQL selecting through a join table with a where or clause

two tables: tasks - id, creator_id (rest not relevant) tag_tasks - tag_id, task_id I want to grab tasks through tag_tasks via an array of tag ids, BUT also grab tasks that have a certain ...
2
votes
2answers
61 views

How to JOIN tables using a range of dates without having procedures

I have two tables, lets call them table A & B :- Table A looks like this: A.Num1 | A.Num2 | A.Date 12345 | 38170 | 28/05/2013 12345 | ...
0
votes
1answer
24 views

SQL display records matching lookup table first then all other records [closed]

Imagine it is a music site and I have 1000 songs. Users can "favorite" songs, this is stored in a lookup table using memberID and songID. I then want to display the favorites for a specific user at ...
0
votes
2answers
34 views

count with where clause multiple condition on same table

I have a table called products. ProductId| ProductName| ProductType| ProductSize 1 | a | yellow | 12 2 | b | green | 13 3 | c | yellow | ...
0
votes
1answer
31 views

Count inner join

** ANSWERED ** I am trying to output my albums in a repeater and show the amount of pictures that are in relation to the specific album. Allthough instead of showing all the albums and the amount of ...
0
votes
6answers
31 views

Join 2 tables using the combination of 2 columns

I am trying to join two tables. Unfortunately there is no single column to join them. Only the combination of 2 columns (in each of the tables) creates a unique identifier that enables me to make an ...
0
votes
1answer
14 views

Better way of doing multiple sub-selects?

Pretty standard setup with a table of products, categories and products in categories, but I was wondering if there is a better/more effective way to get the several top categories for a product (I ...
0
votes
2answers
39 views

SQL for each to join tables

I am looking to fill a temporary table: create table #FinalProduct ( respondentId int, respondentNumber nvarchar(7), questionNumber int, questionAnswer nvarchar(100) ) So far I have it filled with ...
0
votes
1answer
36 views

UPDATE multiple field values based on JOIN [duplicate]

UPDATE table1 SET table1.field1 = table2.field1, table1.field2 = table2.field2, table1.field3 = table2.field3, table1.fieldn = table2.fieldn JOIN table1 ON table2.joinfield = table1.joinfield I'm ...
0
votes
3answers
28 views

SQL get the sum of entries from join tables

The deeper i dive in mysql the more i lost and now i'm completed lost. So i have some tables: MainTable id|message|name ----------------- 1 |test |OP 2 |test2 |jim 3 |test3 |ted Table1 ...
0
votes
1answer
38 views

Inner Join is giving error #1248 - Every derived table must have its own alias

I have been trying to do a Inner Join in SQL. But an error is coming, e.g. #1248 - Every derived table must have its own alias. I have tested the individual query and working well. Can any body help ...
1
vote
2answers
49 views

MYSQL: SELECT sum of field values while also SELECTing unique values?

I'd like to count the number of purchases of each item while also, depending on who's viewing the content, show whether the user has purchased the content. Because the number of items and purchases ...
1
vote
1answer
26 views

mysql join aliases same table

I have a music catalogue with recordings. Each recording has an owner an an author. The tables are: recordings recordings_authors(Fk rec_id, Fk contact_id) recordings_owners(Fk rec_id, Fk ...
0
votes
2answers
44 views

Join with table

Say I have two tables as below where Table A has columns name and type where each name may appear many times and with different type and Table B has unique code, name and sum. Table A John Type1 ...
3
votes
4answers
99 views

Why Duplicates in my join

Why am I getting duplicates? Seems simple but it isn't getting though my thick skull. SELECT MOPACTIVITY.MOPID STRICT, TO_CHAR(MOPNOTES.MOPNOTEDATE, 'yyyy-mm-dd hh24:mi') ...
0
votes
1answer
29 views

how to fetch all row from one table and select row from other table based on first table?

i have a table one table message and other table is image . i want to fetch the data from image for the selected row from the message ( idea is that i want to display the images of sender that are ...
0
votes
0answers
46 views

SQL SELECT from multiple tables with group

I have a SQLite database with following tables: hours, days, names. Names table columns: id, name. Days and hours tables contain following columns: id, value, time(as Unix time). Hours table stores ...

1 2 3 4 5 84