2
votes
4answers
123 views
How to insert a foreign key using a Sub-SELECT in SQL Server
I've just started working with SQL Server for the first time and I'm having trouble populating test data. I have two tables where one has a foreign key to the other and I would lik …
0
votes
2answers
110 views
Updating records in Postgres using nested sub-selects
I have a table where I have added a new column, and I want to write a SQL statement to update that column based on existing information. Here are the two tables and the relevant c …
0
votes
1answer
120 views
How do I select min/max dates from table 2 based on date in table 1?
I have a monthly table (only holds rows with first day of month, and unique constraint so only one of each) and a daily table with similar information for each day (same deal, only …
1
vote
1answer
38 views
MySQL: Usage of indices in UNION subselects
In MySQL 5.0.75-0ubuntu10.2 I've got a fixed table layout like that:
Table parent with an id
Table parent2 with an id
Table children1 with a parentId
CREATE TABLE `Parent` (
` …
1
vote
6answers
181 views
SQL: selective subqueries
Hi,
I'm having an SQL query (MSSQLSERVER) where I add columns to the resultset using subselects:
SELECT P.name,
(select count(*) from cars C where C.type = 'sports') AS sportsca …
0
votes
4answers
147 views
PostgreSQL SELECT the last order per customer per date range
In PostgreSQL:
I have a Table that has 3 columns:
CustomerNum, OrderNum, OrderDate.
There may(or may not) be many orders for each customer per date range. What I am needing is …
0
votes
2answers
90 views
SQL Server statement with subselect is invalid
Hey, I am using iBATIS with SQL Server Compact Edition 3.5 and try to do a subselect
INSERT INTO FORMINSTANCE (ID, ID_FORM)
SELECT #ID#, f.ID
FROM FORM f
WHERE ID_PROCESS …
0
votes
2answers
58 views
MySql variables and php
I am getting an error with this in php. What is the correct way to format this string to pass to mysql_query() in php?
SELECT count(*) FROM agents INTO @AgentCount;
SELECT user_ …
1
vote
3answers
141 views
No idea how to write complex SQL query
Hi
I have following db structure:
File, User, FileRevision (has foreign key to File, and many-2-many connection through intermediate table to User).
I want to fetch all FileRevi …
3
votes
1answer
223 views
How do I get a count of associated rows in a left join in MySQL?
I have two tables, a vehicle table with columns:
id
stock
year
make
model
and an images table with columns:
id
vehicle_id
name
caption
default tinyint(1)
I am trying to lis …
1
vote
1answer
116 views
How do you programmatically turn off eager fetching with hibernate?
I have in my mapping an association to an eagerly loaded collection (lazy="false" fetch="subselect"). How can I turn that off programmatically with Hibernate when I do a query?
Th …
1
vote
3answers
140 views
Using joins correctly
I am looking for a tip on how to optimize this....
SELECT u.uid,
u.username,
u.nid,
wd.pay
FROM (users_data AS u
LEFT JOIN winners_data …
0
votes
1answer
329 views
How do you pass parameters to Hibernate’s subselect tag?
The example at the end of hibernate section 5.1.3 does not show an example on passing parameters.
There is no difference between a view
and a base table for a Hibernate
ma …
0
votes
7answers
182 views
How can I create multiple columns from one DB Field in SQL Server?
I have a field called PropertyValue in the UserProfile table that can contain information for address, phone number, first name, last name, user name, city, etc... each record in t …
0
votes
1answer
702 views
Using a Oracle subselect to replace a CASE statement
Hy guys,
can anybody please help me with a subquery in Oracle database 10g? I need to extract the values for a column in the first table as value of another column in the second t …
