Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
403 views

SQL Server : Get position (ordinal) of a record in a table

I have a table that stores a queue of tasks. Every task looks like: Id | Operation | Argument | Status Operation is a string Argument is a single number Status is one of : Queued, Busy, Complete, ...
2
votes
2answers
59 views

MySQL Update and Select one pass

I have a table dutyrecord which stores multiple user working hours (subtotal) and a UserID (volunteerID). With the following selecting statement I am about to set a total hours for each UserID: ...
2
votes
8answers
144 views

Turn a list of single-column SQL SELECT results into a single line

How can I make the statement: SELECT column1 FROM db WHERE country in ('USA','BRA','CHN') and commodity='pork' return value1, value2, value3 (where value1 is for USA, value2 for BRA, value3 for ...
2
votes
2answers
503 views

How to Create MySQL Query to Find Related Posts from Multiple Tables?

This is a complicated situation (for me) that I'm hopeful someone on here can help me with. I've done plenty of searching for a solution and have not been able to locate one. This is essentially my ...
1
vote
1answer
169 views

Select statement in from clause in Hibernate

I have three tables named: schedule (id, status) criteis (id, name, number, bank) info (id, compleInfo) id is common for all three tables. My req is that i want bank, number from crities table ...
1
vote
2answers
252 views

Help with using SQL select statement in C#

I am trying to retrieve some rows from the database using simple SELECT statement in SQL and displaying them in a Data Grid, Now what I have to do is to multiply the retrieved values with some factor ...
1
vote
1answer
637 views

PostgreSQL: Using subquery abbreviation ('AS') in the WHERE clause

Consider the following query in PostgreSQL: SELECT a, b, (A VERY LONG AND COMPLICATED SUBQUERY) AS c, (ANOTHER VERY LONG AND COMPLICATED SUBQUERY) AS d FROM table I want to have c and d ...
0
votes
2answers
60 views

Select column with values greater 0

I have an item database with 8 tables. There I wanted to write a stored procedure to select all values greater 0 for a specified item ID. My problem now is the statement to return only the columns ...
0
votes
2answers
43 views

select items with certain “/” in SQL

I did a bit of research about sql escape characters and count statements and didnt find a solution to my question. Even though I used stuff like: SELECT * FROM table WHERE path LIKE '%/_%' ESCAPE ...
0
votes
1answer
41 views

How to do a sql select query with groups?

I have a table with employees and a table with errors. In my application you can assign some errors to an employee. So, Employee A will have Error1(type 1), Error2(type 1), and Error3(type2) assigned ...
0
votes
0answers
31 views

SQL Server CE4 Update with select

I have the following SQL targeting SQL Server 2008: declare @id bigint; update [dbo].[Identities] set @id = CurrentId + 1, CurrentId = CurrentId + @numOfIds where [EntityHash] = @entityHash; ...
0
votes
1answer
71 views

Querying multiple SQL tables for one type of objects

Given the following SQL table (MySQL for instance): CREATE TABLE `table` ( `id` int(11) unsigned NOT NULL, `lang` tinyint(3) unsigned NOT NULL, `data` text NOT NULL, PRIMARY KEY (`id`,`lang`) ...
0
votes
2answers
291 views

MySQL: Group Rows With the Same Value in a Certain Column

I have a table called visitors with the following values: id ip date time 1 98.112.43.45 2011-01-11 14:00:10 5 2 98.112.43.45 2011-01-11 11:49:00 ...
0
votes
2answers
62 views

How to join tables easily Microsoft SQL Server?

I have two separate tables used for categories. One is Categories(ID, Title, Description), and the other is SubCategories(ID, UpperID, Title, Description) I want to insert the records from ...
0
votes
3answers
5k views

Oracle correlated subquery in FROM list

I just tried to do a correlated subquery in the FROM clause of a SELECT statement in Oracle, but I was given an error indicating that I couldn't do the correlation (something to the effect that ...