Tagged Questions

0
votes
1answer
24 views

Simple math question with LinQ, simple Join query, Nulls, etc.

I have 2 tables   1. Client   2. Operations Operations can result in: Credits or Debits ('C' or 'D' in a char field) along with date and ammount fields. I must calculat …
1
vote
2answers
25 views

Optimize Join sentence with foreign keys, and show records with nulls

Hi guys I have the following structure SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `sis_param_tax` ( `id` int(5) NOT NULL auto_increment, `description` v …
2
votes
2answers
36 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
5answers
64 views

SQL Join With an ‘Unless’ clause

I'm not quite sure what this is called, but I've spent some time thinking about it and I'm not sure how to approach it. I'm sure it's really simple. I have two tables, foo and ba …
0
votes
5answers
74 views

JOIN after processing SELECT

Given the following schema: CREATE TABLE players ( id BIGINT PRIMARY KEY, name TEXT UNIQUE ); CREATE TABLE trials ( timestamp TIMESTAMP PRIMARY KEY, player BIGINT, scor …
0
votes
2answers
61 views

Priming read for PHP Query

I am new to PHP and working on my own CMS for a project. Mostly to just give myself a project to learn the language. The CMS is working but I am just tracking down some bugs in i …
1
vote
3answers
112 views

Too many tables; MySQL can only use 61 tables in a join

What is the best way to export data from multiple tables in MySQL. I'm basically working with product details. Say a product has 150 attributes of data. How can I export that in a …
0
votes
2answers
68 views

duplicates in a join

the following SQL is returning every BT.Bt_Name where L.date_back is Null. I only wish to select the BT.Bt_Names where L.Bc_id is duplicated SELECT BT.Bt_Name FROM Book_Title BT I …
1
vote
4answers
63 views

Select statement performance

I'm having a performance issue with a select statement I'm executing. Here it is: SELECT Material.* FROM Material INNER JOIN LineInfo ON Material.LineInfoCtr = LineInf …
2
votes
4answers
73 views

PHP Mysql joins across databases

Lets say I have two separate databases, X and Y, on the same physical server. All of my queries currently run out of X. I find I have one table in Y I would like to be available …
0
votes
2answers
30 views

JPA join column with null values

I have a query that works in plain SQL but is not working on JPA and can't figure out why. As you can guess from the title I have a clue but I don't know how to "fix" it. Here's t …
0
votes
2answers
26 views

problem with join mssql 2000

I have 3 tables - Items, Props, Items_To_Props i need to retun all items that match all properties that i send example items 1 2 3 4 props T1 T2 T3 items_to_props 1 T1 1 T2 1 …
2
votes
3answers
108 views

SQL joining question

Here is my situation: I have one table that contains a list of drugs sold containing the NDC (an identifier), quantity sold, and whether the drug is a brand name or generic. I ha …
0
votes
1answer
20 views

How do I get all rows from ITEM table, which are children of a parent ITEM table row, where relationship is stored separately?

Hi, How do I get all rows from ITEM table, which are children of a parent ITEM table row, where relationship is stored separately? How can I do a join to do this? "get all rows …
1
vote
3answers
86 views

Mysql query. What is the difference between Join and a SubQuery?

I always though join gets the results of something and then joins only using those results. SELECT * FROM tbl AS t1 JOIN tbl2 AS t2 ON t1.id = t2.foreignId JOIN tbl3 AS t3 ON t2. …

1 2 3 4 5 37 next
15 30 50 per page