Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
260 views

Efficient way to get max date before a given date

Suppose I have a table called Transaction and another table called Price. Price holds the prices for given funds at different dates. Each fund will have prices added at various dates, but they won't ...
4
votes
6answers
316 views

Is it always a good practice to use aliases in sql joins or nested queries?

Is it always a best practice to use - Select E.Id,D.DeptName from Employee E join Dept D on E.DeptId=D.Id instead of - Select Employee.Id,Dept.DeptName from Employee join Dept on ...
4
votes
3answers
211 views

How to optimize a nested query?

Can I somehow join tables and avoid the usage of distinct in the following MySQL query. invited_by_id shows the user id of who invited this user. SELECT user1.id, count(distinct user2.id) AS ...
2
votes
3answers
44 views

Trouble with computed column in SQL

I have a table that I wish to select a subset of columns from but also add on the end a computed column based upon where you are located in a queue. There are the following fields (that are ...
2
votes
2answers
39 views

SQL Subquery Optimization

I have two tables, Categories and RecipeCategories **Categories** CategoryID varchar (Primary Key) Name varchar **RecipeCategories** RecipeID varchar CategoryID varchar Composite primary key I'm ...
2
votes
2answers
73 views

Run a mysql query in a mysql query

Hello I'm trying to query my database table "shout_out", during the while loop I have an if statement to check to if the "convers_id" column has been change from no_reply. if it has I want another ...
2
votes
3answers
90 views

Nested queries from multiple Oracle databases

In .NET, Is it possible to run a nested query from two separate Oracle databases? E.g. "SELECT my_value, FROM table_in_database_1 WHERE my_value IN ( SELECT my_value FROM ...
2
votes
2answers
143 views

Deleting unneeded rows from a table with 2 criteria

I have a many-to-many relations table and I need to DELETE the unneeded rows. The lastviews table's structure is: | user (int) | document (int) | time (datetime) | This table logs the last users ...
2
votes
2answers
471 views

How to make a nested query?

Have a table users and there is a field invited_by_id showing user id of the person who invited this user. Need to make a MySQL query returning rows with all the fields from users plus a invites_count ...
1
vote
1answer
95 views

Nested select statement in FROM clause? Inner Join statements? or just table name?

I'm building a query that needs data from 5 tables. I've been told by a DBA in the past that specifying a list of columns vs getting all columns (*) is preferred from some performance/memory aspect. ...
1
vote
2answers
56 views

Mysql nested query passing one value to nested query

Hi I have a coupon system that uses one table (called "coupons") to store info about each type of available coupon that one could generate, and another table (generatedcoupons) to store info about ...
1
vote
1answer
72 views

Nested Queries, Best way to do this. Example Attached

Righto. So I have the following SQL Server query: SELECT St.Financial_Account_ID, St.Business_ID, St.Financial_Account_Desc, St.Financial_Account_Type_ID, St.Financial_Account_Active, ...
1
vote
1answer
150 views

SQL_CALC_FOUND_ROWS return error

I use nested MySQL query to get user posts, and when I put SQL_CALC_FOUND_ROWS in child query, MySQL return error: Incorrect usage/placement of 'SQL_CALC_FOUND_ROWS' The query is: SELECT ...
1
vote
1answer
364 views

Using PHP to query db, fetch results via AJAX as variable, query db again using values of initial variable

It's all in the question really :) It's clearer when I put it in bullet points what I want to do, so here it goes: I have two forms on a page, a search form, and an 'edit profile' form. Both are in ...
1
vote
1answer
138 views

Nested query microsoft access

I have a table of transactions. The table was multiple vendors with multiple transactions with multiple transaction amounts. I need to update the table if a vendors transaction is more than double the ...
1
vote
3answers
105 views

Nested SQL statement

I have a table for persons, anothor for types of contacts(email, tel, etc.) and a junction table to save person contacts. I'w like to construct a query to get email, tel, po for each person in one ...
1
vote
7answers
205 views

How to get single result in from sql select query! SQL

above are the part of my database diagram where i am getting problem! select columns from 3 table with the help of referencing from 1 outside table base_table and 3 table . But Sql displaying a ...
1
vote
3answers
119 views

How to give the output of the first query(which has two values) as the input to the second?

i get 2 names as the output of the first query.... eg: paul,peter now this should be the input for the second query, which has to display paul's and peter's email ids....
1
vote
2answers
146 views

How to select from tableA sum of grouped numbers from tableB above their sums average in Oracle?

I have data like this: tableA.ID --------- 1 2 3 tableB.ID tableB.NUM -------------------- 1 10 1 15 2 18 3 12 2 12 2 15 3 13 1 12 I ...
1
vote
2answers
161 views

Help converting SQL nested sub-query to join query for mysql 4.0 compatibility

I have a nested SQL query : SELECT DISTINCT(topic_id) FROM bb_posts WHERE topic_id NOT IN ( SELECT topic_id FROM bb_posts WHERE poster_id = $user_id AND post_status = 0 ) ORDER BY post_time ...
1
vote
2answers
56 views

Designing around nested queries that throw “No Supported Translation in SQL” for invoice totals

I have a table of invoices. My service layer knows how to calculate the invoice Total for one invoice, but if I want to filter a set of invoices by Total, the LINQ query fails because there is "No ...
1
vote
2answers
112 views

Nested SQL Query

I have the following tables: Club: Club_ID | Title | Created_Date | ... Club_Intesect: User_ID | Club_ID | Access I'm trying to select a variable number of clubs, and join the ID of the ...
1
vote
1answer
146 views

Nested Queries? -> Set Value = (Select Value From OtherTable WHERE)

I'm looking to do a single query to update a database. Here is some pseudocode: UPDATE Table1 SET Table1.Value = (SELECT Value FROM Table2 WHERE Table2.Id==2) WHERE Table1.Id == 4
1
vote
2answers
189 views

a nested query question in mysql

I'm trying to learn nested queries in mysql and I'm stuck while selecting all hotels which are 30 miles away from the city and have rooms that cost 150$ I can chose the rooms which are 30 miles away ...
1
vote
2answers
334 views

sql query from usp results

How to query the results of a stored procedure? Here's my example: sp_columsn 'tblSomeTableName' --// Returns a recordset select COLUMN_NAME from [sp_columns 'tblSomeTableName'] --// Raises an ...
1
vote
1answer
437 views

Using results from parent queries in nested select

I'm sure this is a fairly trivial problem, but I'm not sure what to google to find the solution. I have a table that looks like this: CREATE TABLE IF NOT EXISTS `transactions` ( `name` text ...
1
vote
4answers
577 views

How to select values from two tables that are not contained in the map table?

Lets say I have the following tables: Customers Products CustomerProducts Is there a way I can do a select from the Customers and Products tables, where the values are NOT in the map table? ...
1
vote
2answers
1k views

mysql - embed count query within another query

In postgres I am fairly sure you can do something like this SELECT authors.stage_name, count(select id from books where books.author_id = authors.id) FROM authors, books; Essentially, in ...
0
votes
2answers
88 views

Nested SQL queries in asp.net

I have to run 1 query, then another with the results of the first. I realize that I COULD just throw the first result set inside of an array then iterate through the array, but is there a way to just ...
0
votes
2answers
58 views

Nested query sql , unable to execute

I want to compare some floating values . To do,my query is like : SELECT * FROM pricelist WHERE START_FREQUENCY >= '( SELECT START_FREQUENCY FROM pricelist WHERE START_FREQUENCY ...
0
votes
3answers
139 views

Any way to merge two queries in solr?

In my project, we use solr to index a lot of different kind of documents, by example Books and Persons, with some common fields (like the name) and some type-specific fields (like the category, or the ...
0
votes
2answers
49 views

Can I return the values of multiple documents' fields in a Solr query?

Suppose I have these fields in a document schema: <field name="id" type="string" indexed="true" stored="true" multiValued="false" /> <field name="type" type="string" indexed="true" ...
0
votes
1answer
53 views

Update fields in MySQL table where fields in several tables are matched

I have four tables. The first contains a list of volunteers, the second a list of sites, and the third a list of projects. A project row is simply a reference to a volunteer and a site with an id and ...
0
votes
1answer
76 views

Nested/Subqueries cuasing syntax erros using mysqli extension; though syntactically correct

I'm using the mysqli improved extension (procedural style) and have just ran into an anomaly when running sub-queries through the mysqli_query() function. Update: After much troubleshooting I've ...
0
votes
4answers
155 views

Nested loops and SQL queries; need for speed

I'm having trouble solving a problem with iterative SQL queries (which I need to do away with) and I'm trying to work out an alternative. (Also; unfortunately, AJAX is not really suitable) Given I ...
0
votes
0answers
79 views

Error from nested query with GeoDjango

I'm having trouble constructing nested queries using in field lookup in GeoDjango. The following code demonstrates the problem: inner_qs = Footprint.objects.filter(geom__bboverlaps=bounding_box) ...
0
votes
1answer
82 views

Running a MySQL query, storing a temp value, then running another query

To give some context, the following dropdown is within a form that gives the current profile description of an animal stored in the database: i.e, this pony is yea high, of this gender, owned by ...
0
votes
2answers
149 views

nested select queries issue

I have a select query that fetches me a table with rows, I want to get a particular row from this result but using the same first query, I explain: We have a query: $myQuery=("select col1,col2 from ...
0
votes
1answer
127 views

Mysql refrencing derived tables from nested query

I posted something similar to this yesterday, but now I'd like something a little different from my query- I'm trying to query a database to retrieve the number of one-time users who have visited a ...
0
votes
1answer
82 views

SQL group by problem

I have to write a query to database, that has such table: TABLE HISTORY: ID | ITEM_ID | USER_ID | DATE and ITEM TABLE: ID | NAME | OWNER_ID History table contains a records of all operations ...
0
votes
2answers
158 views

Reading most recent values in a join without performing a nested SELECT

In the interest of eliminating as many nested queries as possible, I'm trying to optimize the following query: SELECT fp.id, fp.user_id, COUNT(c.id) AS num_replies, ...
0
votes
2answers
106 views

ASP.NET Linq To SQL and Nested Selects

I'm using .NET 4 and I'm just wondering if there is an optimized way of achieving the following. Public Function GetUserByOpenID(ByVal claimedidentifier As String) As User Implements ...
0
votes
1answer
256 views

Nested SQL Select statement fails on SQL Server 2000, ok on SQL Server 2005

Here is the query: INSERT INTO @TempTable SELECT UserID, Name, Address1 = (SELECT TOP 1 [Address] FROM (SELECT TOP 1 [Address] FROM [UserAddress] ua ...