The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
23 views

how to select one image of a object stored in another table

the question may be easy to you product table in SQL ID, Name, . . . ProductImage ID,ProductID,Image select an image in select query of Product i need first/last image of product1,first/last image ...
0
votes
0answers
36 views

SQL Server select max(id) given other conditions in where clause [duplicate]

We have a database table with structure as such: id (PK - identity, integer) NPI (varchar) lastname (varchar) firstname (varchar) city (varchar) state (varchar) The nature of the table is that some ...
-7
votes
6answers
100 views

How to get Top salary in SQL [closed]

My table is: +----------------------------------------+ | ID Emp_ID Prj_ID Salary | +----------------------------------------+ | 1 E1 P1 2000 | | 2 E1 ...
0
votes
5answers
53 views

top 1 case in select statement on TSQL [closed]

I am having problem on this query. How can I fix this: select (select case top 1 STATUS when 'Inprocess' then 'Processing' when 'Inworkbin' then 'Waiting In Draft' end ...
-1
votes
6answers
74 views

SELECT most experienced person

I have to make a table of basketball players and a query which finds the player with the most experience I have tried SELECT firstName, lastName, MAX(experience) FROM Player but I'm assuming thats ...
2
votes
2answers
94 views

Get highest value for each group of names

I have the following table as an example: Job_name RunTime AR_job1 100 AR_job2 120 AR_job3 130 EP_job1 100 EP_job2 80 Job field is just text and Runtime is an integer ...
0
votes
3answers
58 views

updating second to last record in oracle sql

I have 3 primary keys. CompanyName, EmpNo, StartDate. I want to create a stored procedure that can allow me to update only the second to last record of each empno. How can I achieve that? In this ...
1
vote
3answers
69 views

need oracle query [duplicate]

I am practising Oracle Subqueries.. (I am new to Oracle.) Question: Find the Highest Earning Employee in each Department? My query below works (BUT I feel its not that good, even though I get the ...
1
vote
2answers
81 views

Find top 3 users per location

I am fairly new to SQL, working on some practice problems. I have a sample Twitter database and I am trying to find the top 3 users in each location based on number of followers. Here are the tables ...
0
votes
2answers
70 views

showing the details of the student with the maximum marks in oracle 11g R2 [duplicate]

goal I have a student table. I need to show the details viz. name of the student who has obtained the maximum marks in a test. definition of the tables the following is the code for the definition ...
0
votes
0answers
75 views

I just added a Top N to a Cross Tab in Crystal Report but my summarized field does not show the Top N results

Here are some details: I want my cross tab to show the top 5 results of all of the invoices that came in last month. My cross tab shows: Row - Account Name and Summarized Field: Sum of Invoice ...
0
votes
1answer
226 views

SQL Server 2005 SELECT TOP 1 from VIEW returns LAST row

I have a view that may contain more than one row, looking like this: [rate] | [vendorID] 8374 1234 6523 4321 5234 9374 In a SPROC, I need to set a param equal to the value of ...
0
votes
5answers
249 views

SQL - Select the top 1 from each group

I have a table that lists the versions of software that are installed id userid version datetime 111 75 10075 2013-03-12 13:40:58.770 112 75 10079 2013-03-12 ...
0
votes
4answers
62 views

sql query on employ table

My employees table has 3 columns: emp_id, emp_sal, dept_id. I need to find, for each department, the employee(s) with the greatest salary. I need to return emp_id, emp_sal and dept_id for those ...
0
votes
2answers
62 views

Oracle to retrieve maximum record

Table_A A_id 1 Tale_B B_id A_id 1 1 2 1 3 1 Table_C B_id Process_date 1 20130101 12:20:01 2 20130101 12:10:01 3 20130101 13:00:01 ...
-2
votes
2answers
211 views

Rank function oracle sql

I am new to sql and working on assignment. There is a question, where I am supposed to use rank function, but I have no idea how to use that. I tried to find some information on the internet, but ...
1
vote
2answers
252 views

Getting Top 5 Results using ROWNUM in Oracle

is there something wrong with my query? I use below to get the first 5 results ordered by AUDIT_ACTN then AUDIT_STAMP. SELECT * FROM (SELECT * FROM TABLE_SAMPLE ORDER BY AUDIT_ACTN ASC,AUDIT_STAMP ...
0
votes
1answer
144 views

Oracle query to find the 2nd highest [duplicate]

Possible Duplicate: select 2nd row in Plsql I have this database movies (id: int, name: string, years: int, rating: float) movies_genres (movie_id: int, genre: string) I need to find the ...
0
votes
2answers
110 views

select 2nd row in Plsql

Lets say I have the following table: SomeTable( id, price ) How do I select the 2nd highest priced row from this table? Note : This has to be done in Pl/SQL, in a database agnostic way. ...
0
votes
2answers
33 views

display the cab with the highest overall maintenance cost

I'm not sure how to get the max of the sum. I thought i could just display it in descending order and then use "rownum=1" but that didnt work. Any suggestions? Here's my code. select ca_make, ...
0
votes
2answers
66 views

Get the top 10% of records based on score column

I have a SCORE column. How do I select the top 10% from EMPLOYEE table with top scores?
0
votes
4answers
98 views

Need help in writing SQL query

I am facing a pecular problem in writing a sql query for below functionality: Consider below table: --------------------------------- AccountNumber JobNumber --------------------------------- ...
0
votes
4answers
130 views

Use of MIN and COUNT

Can you give me an example at use of the min and count at the same query? For example on this table I want to know the lower number of workers with an odd Code (1 with the code 5). Table Workers ...
2
votes
3answers
251 views

Display the name and max age [duplicate]

Possible Duplicate: How to display the record with the highest value in Oracle? I am supposed to display the name and age of the oldest person from the database. The code I used displays ...
0
votes
2answers
81 views

Returning max value and value prior

I have a query I run to tell me the latest note for active participants: select notes.applicant_id, reg.program_code, reg.last_name, reg.first_name, reg.status_cd, ...
3
votes
1answer
229 views

Oracle and Pagination

In MySql, the concept of pagination can easily be implemented with a single SQL statement using the LIMIT clause something like the following. SELECT country_id, country_name FROM country c ORDER ...
1
vote
1answer
94 views

inner join on table with multiple record

I have two tables as follows table1 column1|column2 ---------------- a1 | c1 ---------------- a2 | c2 table2 column1|column2|column3 ---------------------- 1 | a1 | x ...
0
votes
2answers
64 views

how to get first female of each tool, oracle database [duplicate]

Possible Duplicate: Oracle SQL - How to Retrieve highest 5 values of a column I'm writing oracle query but stuck in the following problem table is like this: **Tool** **Name** ...
0
votes
1answer
84 views

Finding the MAX [duplicate]

Possible Duplicate: Oracle SQL - How to Retrieve highest 5 values of a column I have a simple question for someone who knows anything about SQL but since i'm very new and although I have ...
1
vote
3answers
85 views

how to get latest 'n' updated row from a table [duplicate]

Possible Duplicate: Oracle SQL - How to Retrieve highest 5 values of a column i have a table abc, where i have following columns act_id,cust_id,lastUpdatedDate,custActivity. Where act_id ...
0
votes
1answer
85 views

Find the most expensive order

I'm trying to find the most expensive order within my table, and I've achieved this, but I'd like to know how to just return this one particular row. Right now it turns all rows with the most ...
1
vote
2answers
135 views

Select rows and group by id and sort for n latest rows (by date)

I have the following set of data returned by a select: date code 23/01/2012 AA123 24/01/2012 AA123 29/01/2012 AA123 06/07/2012 AA123 17/02/2012 BB123 20/02/2012 BB123 ...
2
votes
2answers
218 views

How to display the record with the highest value in Oracle?

I have 4 tables with the following structure: Table artist: artistID lastname firstname nationality dateofbirth datedcease Table work: workId title copy medium description artist ID Table ...
1
vote
2answers
87 views

sql questions on these

I have 4 tables. One is called artist. Here is the table structure: artistID lastname firstname nationality dateofbirth datedcease The other table is called work workId title copy medium ...
2
votes
1answer
229 views

Oracle SQL: Show n rows for each id

I have a table with 2 columns, ID and URLS, for each ID there are several URLS. I want to extract only 5 maximum URLS per ID. How do I go about doing this in Oracle SQL?
5
votes
3answers
151 views

Finding the most popular likes in my friend network

I am working on a way to find the most popular likes in my friend network. "Most popular in my friend network" is defined as "having the most number of likes by my friends". Suppose each friend has ...
0
votes
2answers
135 views

How to get top n companies from a data frame in decreasing order

I am trying to get the top 'n' companies from a data frame.Here is my code below. data("Forbes2000", package = "HSAUR") sort(Forbes2000$profits,decreasing=TRUE) Now I would like to get the top 50 ...
0
votes
3answers
411 views

aggregation subquery with top N

Let's say I have a table called COFFEE showing Bus Stations and all of the coffee shops within 10 blocks of the bus station: BusStationID| CoffeeShopID | Distance (in city blocks) 1|2103|2 ...
2
votes
2answers
140 views

Top N query performance when accessing a list of IDs

I have a top N query that is giving me problems. First of all, I have a query like the following: select /*+ gather_plan_statistics */ * from ( select rowid from payer_subscription ps where ...
0
votes
3answers
200 views

Selecting top n elements elements in java list of models with criteria

I have a MySQL table as such id_user id_info 1 45 1 54 1 12 2 16 2 48 3 94 ... ... For all of my users, I want to select n info at random (say, 1), or with a criteria. I know that it is quite ...
1
vote
3answers
999 views

NHibernate select top N with condition on children using fetch

I have simple User entity: public class User { public virtual int Id { get; set; } public virtual DateTime CreationDate { get; set; } public virtual DateTime ModifiedDate { get; set; } ...
0
votes
1answer
184 views

SQL query to get top 10 of a new column generated by SUM

I have a query that looks like so: SELECT Name, SUM(Price * Quantity) AS Total FROM Sales WHERE Date = " + ddItems.SelectedItem + " GROUP BY Name How can I show the top 10 totals?
1
vote
1answer
155 views

Return N results for different groups with additional condition oracle sql

How would I be able to N results for several groups in an oracle query. See the following table for an example: ID Team Auditor 1 Tm1 Jill 2 Tm2 Jill 3 Tm1 Jill ...
1
vote
1answer
669 views

Average of Top n per Group SQL Server

I'm working on a problem of finding mean processing times. I'm trying to eliminate outlier data by essentially performing a average on only the best 80% of the data. I am struggling trying to adapt ...
2
votes
1answer
167 views

MySQL query to choose top camera choices based on multiple column values

Okay so I am trying to get some ideas on how to go about determining the top choices of camera I have from the table setup below. This is not a real scenario I am just trying to figure out the best ...
1
vote
1answer
302 views

what is topN in nutch 1.3?

I read in sites that nutch fetch links from every link equls to topN.I have 4 links but when nutch crawl my links, all result that returned with nutch are equals topN. it means if i have 4 links and ...
2
votes
4answers
4k views

SQL Query to Select First/Top N records

I need to do a query to return the next (or prev) record if a certain record is not present. For instance consider the following table: ID (primary key) value 1 John 3 ...
4
votes
6answers
1k views

Efficiently find top-N values from multiple columns independently in Oracle

Suppose I have 30 billion rows with multiple columns, and I want to efficiently find the top N most-frequent values for each column independently, and with the most elegant SQL possible. For example, ...
-1
votes
1answer
381 views

PostgreSQL: How to force db use the “quicksort” sorting method instead of “top-N heapsort”?

Actually, all my question is written in subj-field. It's it somehow possible in PostgreSQL? Probably at server-config level, or can be configured in query, or in properties of table? I hardly tried to ...
5
votes
1answer
2k views

Select top N with “for update skip locked” in Oracle

In Oracle, I can select the top 1 message in a sorted table with select messageid from( select messageid, RANK() over (order by messageid asc) as msg_rank from messages ) ...

1 2