0
votes
1answer
57 views

MySQL JOIN 4 different tables

How to join those 4 different tables so I can get string result instead of numbers. This is my query so far SELECT mg_golub.ID AS IDgolub, mg_golub.brojgoluba, mg_golub.spol, mg_golub.boja, ...
0
votes
2answers
25 views

Select Query in MySQL for multiple tables

I m working in MySQL and have to write a select query. I have related data in four tables. Now, the parent table may have data whose child data may not be present in lower tables. I want to write a ...
0
votes
2answers
28 views

Stuck with mysql query and JOINs

I have 2 tables. In table#1 there is IDotac and IDmajka and IDgolub. I need to find brojgoluba from table#2 that matches those 3 fields in table#1. for example in table#1 ID=28 (table#1)IDgolub=1, ...
2
votes
1answer
44 views

Join two mysql queries

I have 3 tables Table1 RouteID int departure_stop int destination_stop int Price decimal(6,2) Table2 StopID int Stop varchar(50) ...
3
votes
2answers
49 views

MySQL Relational query

I need a query suggestion. I have 3 tables with table schema as below: clause_type: ------------- clause_type_id clause_type_title -------------- ------------ 1 clause type 1 2 ...
0
votes
3answers
25 views

Read specific values from two tables with single result - mysql

I have two tables say Listings and Catalog_Options Listings listing_id catalog_option_1 catalog_option_2 catalog_option_3 Catalog_Options id value Here catalog_option_1, catalog_option_2, ...
0
votes
1answer
28 views

Joining two table by mask

I have 2 tables PAGE and SITE. PAGE table has field URL. And SITE table has field DOMEN_URL. I want to join two tables on these fields. But I want to condition of joining is that url of the page ...
0
votes
3answers
31 views

How to use a PHP variable in Inner Join MYSQL query?

I have been trying for the past day to get mysql to recognize my PhP variable, but I have had no luck so far. The code: ...connect to db... session_start(); //Calls up Session stored variable ...
0
votes
2answers
16 views

Multi-table generic query model for CakePHP

I have approximately 25 join queries I need to build to run in a project on CakePHP. It is much faster to just work in MySQL WorkBench or phpMyAdmin building the queries, and then drop into PHP code ...
0
votes
1answer
21 views

AND multiple JOIN statements in Rails

I have a table for users and roles. I'm using a has many through relationship. I am trying to create a query that will find users that have all of the roles in an array. ex. role_ids = [2, 4, 6] ...
1
vote
3answers
61 views

Performance improvement for SQL count query

What type of sql query would I use to turn the following; | ID | SERIAL | LCN | INITLCN | |------|----------|-------|---------| | 1 | A | A1 | | | 2 | B | A2 | ...
0
votes
2answers
51 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
0answers
49 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 ...
1
vote
3answers
43 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" +---+-----+------+------+ ...
0
votes
2answers
46 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
2answers
29 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 ...
0
votes
1answer
26 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 ...
1
vote
1answer
18 views

Mysql join query on multiple tables

I have three tables and in those tables these basic fields contacts con_id (primary key) con_name con_work_id con_country_id work work_id (primary key) work_company_name work_country_id ...
1
vote
4answers
43 views

SQL query for combining rows that have overlapping dates in separate columns

this is an odd question. let me lay out my table structures... my 'server' table gives me status information of my servers (i get a few of these messages every minute). my 'client' table is updated ...
0
votes
0answers
31 views

Complex SQL join with grouping

putting this view together and have hit a wall. There's four tables joining and problems lie between the Property and Activities table. Some "properties" have several "activities" and some have none ...
1
vote
3answers
45 views

Join mutiple tables with date

I have three tables **Table A** +-----------------+ | Name | ID | +------------------ | A1 | 1 | | A2 | 2 | | A3 | 3 | +------------------ **Table B** ...
1
vote
1answer
44 views

SQL Oracle - max function

I need some help with this query, i need to get code name address with the most recent date per code (date1 is < date6 in this example) Tab1 code address ==================== cod1 addr1 ...
0
votes
3answers
49 views

Complex MySQL join with dynamic where

Here are my two tables that I'm trying to join... name: notifications ------------------------------------------- content | position | member | contentType ...
-1
votes
1answer
52 views

How to use join in sql query? [closed]

I am using Microsoft SQL server, and I want to use the join but from multiple tables. This is what I have select a.*, b.Position_Name, c.StartDate, c.EndDate--, e.firmName from NewHire a--, Firms e ...
2
votes
1answer
22 views

Replace column value based on subquery

Basically, I have a table, call it regular, that gives me the service_id for a given day of the week, and then another table, call it exception, that specifies certain dates when the service_id is ...
1
vote
3answers
59 views

IF/ELSE LEFT JOIN

I need to do a LEFT JOIN with IF/ELSE, this is my query: IF (M.idArtVar=null, LEFT JOIN ArtMaga G ON (G.idMagazzino = V.idMagazzino AND G.idArticolo = M.idArticolo), LEFT JOIN ...
1
vote
1answer
57 views

Magento Collections - Resulting SQL Queries and How To Specify INNER/OUTER Joins

As a relatively new user of Magento and an even newer user of SQL, this question could be a dumb one. I'm simply having a very hard time formulating an SQL query with the Magento API. The query I'm ...
1
vote
1answer
109 views

Why SQL error “unknown column” in JOIN query?

I'm querying 3 tables using JOIN and I need to use it twice for the same table. I'm getting an "Unknown column" error message. I have tried various ways using aliases but I just can't resolve the ...
1
vote
2answers
62 views

What is wrong with my queries?

All the code is correct but the queries (which are at the very bottom) don't seem to run. I checked on w3schools.com for more information, but it seems like there's nothing wrong with my code. Can ...
0
votes
1answer
74 views

SQL Server 2008 R2 STcontains spatial join using two tables

I've been stabbing at this for a while and am getting nowhere, so I'm hoping that someone with greater skills than I might have the answer. I have two tables and in one is a set of latitude and ...
1
vote
1answer
53 views

How To Use Magento Collections to Run Query, Get Results, and Print Them

I am fairly new to programming, php, Magento, and most of all, SQL. Please forgive me if this is somehow a dumb question. I am trying to use Magento collections to select two different columns in two ...
-1
votes
1answer
27 views

SQL help joining several tables [closed]

Please can someone help explain how I'd go about building an SQL query for joining the tables in the attached image. I'm new to web & database design and have been struggling with it for ...
-4
votes
0answers
45 views

Combining 8 Tables into 1 Query [duplicate]

Hey im in over my head in a recent project i started. I got 8 tables that needs to be joined so that all the tables content will get displayed with 1 single query But im struggling to come up with ...
2
votes
3answers
46 views

Stored procedure for getting sum of entries in table for each ID

I am writing a stored procedure, where I have a column called scale which stores the result from the radio button selected as 1/ 2/ 3/ 4 for each type of skill name. Now, I want to see total number ...
-3
votes
3answers
146 views

Combining 8 Tables into 1 query [closed]

Hey im in over my head in a recent project i started. I got 8 tables that needs to be joined so that all the tables content will get displayed with 1 single query But im struggling to come up with ...
0
votes
2answers
57 views

Hibernate Joins

Please how to write this simple working select, in Hibernate query or criteria SELECT * FROM `call` AS c JOIN `event_customer` AS e ON c.customer_id = e.customer_id WHERE e.dgdelete = FALSE AND ...
1
vote
1answer
37 views

SQL Query Across Three Tables

I am trying to query across three tables and find a certain result. directory String playerid, String college, int year playersSchools String playerid, String schoolID salaries String playerid, ...
1
vote
3answers
34 views

Join query in Mysql of two tables

I have two tables : ad ( id(int) , userid(int) ) : table to store advertisement which have a user column adcat ( adid(int) , catid(int) ) : table to store the category id (catid) of each ad (adid) ...
0
votes
1answer
24 views

how to select data from primary key in a table when it's not equal to forign key in another table?

Here's what I have: 1. I have a table called "International_Codes" with 2 columns (int_code_id, desc) 2. I have another table called "size_charts" which has (int_code_id, xs, s, m, l, xl) I have a ...
1
vote
2answers
49 views

Setting two column values from Single Column using sql query

Iam having a table with following details ID statusID logTime 100238 1 2011-07-07 03:48:43.000 100238 2 2011-07-07 03:48:46.000 100238 1 2011-07-07 09:07:57.000 100238 2 2011-07-07 ...
-3
votes
0answers
29 views

joining table data and not repeating the result

**payment** paymentid(PK) stuid(FK) paidam total pdate ptime commt pmtrcvduser delstat **payment_detail** paymentid(FK) subidfk(FK) paidforyear paidformonth delstat **student_subjects** stuid(FK) ...
2
votes
3answers
59 views

Is condition in the JOIN clause evil SQL

Is it better to have SQL condition in the JOIN clause or in the WHERE clause ? Is SQL engine optimized for either way ? Does it depend on the engine ? Is it always possible to replace condition in ...
2
votes
1answer
41 views

MySQL nested join

I am storing data of a ecological survey. In each sampling site, multiple individuals are collected and identified for species name, genus name and family name. The tables in the database are the ...
1
vote
0answers
32 views

Optimize my query

I have a table in PostgreSQL as below. CREATE TABLE my_data ( indexid integer NOT NULL, empid integer, domainid integer, modulename character varying(100), groupname character varying(50), ...
0
votes
1answer
46 views

How can I combine four queries into one query?

Structure of my tables: posts (id, name, user_id, about, time) comments (id, post_id, user_id, text, time) users_votes (id, user, post_id, time) users_favs ( id, user_id, post_id, time) How can ...
0
votes
1answer
61 views

Query to arrange rows horizontally

I have 2 tables which I need to join and produce a third table with columns arranged horizontally. The tables are as follows: I need the output 2 from table1 and table2. I did some research and ...
0
votes
2answers
29 views

MySql query join return result with empty column

hello i have this query i want it to also return rows from table j(jobcard) where j.articleId,j.statusId,j.hcwsId,j.gpId are null any help plz? SELECT jobcardId,createDateTime,jobNo,companyId, ...
0
votes
1answer
21 views

retrieve information about an event and determine if user is participating - mysql query

I use the query below to retrieve information about a meetup(an event), and now i need to know if the user viewing it is participating in it. SELECT meetups.id, meetups.meetup_name, ...
0
votes
1answer
51 views

Database search with multi joins

I have a MySQL database and I want to perform a little bigger search. I have about 10k records in one of the tables and It's expected to grow, but slowly. The biggest problem is that to perform the ...

1 2 3 4 5 27