|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, May 13, 2013 10:44 AM
Points: 6,
Visits: 57
|
|
i need a query to get the names of the product which has incremental or equal values every year 2009-2012(in its QTY column) Product year QTY Computer 2009 100 Computer 2010 200 Computer 2011 300 Computer 2012 400 printer 2009 100 printer 2010 200 printer 2011 250 printer 2012 250 flash drive 2009 400 flash drive 2010 500 flash drive 2011 700 flash drive 2012 900 monitor 2009 200 monitor 2010 300 monitor 2011 250 monitor 2012 400 keyboard 2009 100 keyboard 2010 150 keyboard 2011 200 keyboard 2012 150
-------------output---------- Computer printer flashdrive
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: Friday, May 17, 2013 10:07 AM
Points: 935,
Visits: 1,709
|
|
This looks like homework or an interview question so ill post some usable data. Can you show what you have tried so far?
CREATE TABLE tmpProduct ( Product VARCHAR(32), [Year] INT, QTY INT, CONSTRAINT PK_tmpProduct PRIMARY KEY (Product, [Year]) ) INSERT INTO tmpProduct (Product, [Year], QTY) SELECT * FROM (VALUES ('Computer', 2009, 100), ('Computer', 2010, 200), ('Computer', 2011, 300), ('Computer', 2012, 400), ('printer', 2009, 100), ('printer', 2010, 200), ('printer', 2011, 250), ('printer', 2012, 250), ('flash drive', 2009, 400), ('flash drive', 2010, 500), ('flash drive', 2011, 700), ('flash drive', 2012, 900), ('monitor', 2009, 200), ('monitor', 2010, 300), ('monitor', 2011, 250), ('monitor', 2012, 400), ('keyboard', 2009, 100), ('keyboard', 2010, 150), ('keyboard', 2011, 200), ('keyboard', 2012, 150))X(Product, [Year], QTY)
For faster help in answering any problems Please read How to post data/code on a forum to get the best help - Jeff Moden for the best way to ask your question.
For performance Issues see how we like them posted here: How to Post Performance Problems - Gail Shaw
Need to Split some strings? Jeff Moden's DelimitedSplit8K Jeff Moden's Cross tab and Pivots Part 1 Jeff Moden's Cross tab and Pivots Part 2
Jeremy Oursler
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, May 13, 2013 10:44 AM
Points: 6,
Visits: 57
|
|
thank you for the response. FYI this is not a homework or an interview question. i know how to create a table and insert data on it! i need a query which will give me the required result.and yes i even couldnt figure out how to start on this!! anybody!!???
|
|
|
|
|
SSCrazy Eights
        
Group: General Forum Members
Last Login: Yesterday @ 2:34 PM
Points: 8,592,
Visits: 8,233
|
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, May 13, 2013 10:44 AM
Points: 6,
Visits: 57
|
|
| yea i jus saw tht...he is my friend ...we both are new to this forum and we both trying to figure out the solution...we tryin to delete one post but jus couldnt figure out how...man i dont get it...why everybody are acting like teachers??!!! or a spy..if u dont want to help thn jus move on.
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Tuesday, January 15, 2013 11:11 AM
Points: 1,945,
Visits: 2,782
|
|
.why everybody are acting like teachers?
Some of us are teachers. And it is our duty to find students who cheat on their homework and get them expelled from their schools for it. Over the years I have gotten two students (New Zealand, guys with "do my homework" requests) and one instructor (reproducing copyrighted materials -- my books -- without permission from my publisher).
Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. If you know how, follow ISO-11179 data element naming conventions and formatting rules. Temporal data should use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect.
This is minimal polite behavior on SQL forums.
Books in Celko Series for Morgan-Kaufmann Publishing Analytics and OLAP in SQL Data and Databases: Concepts in Practice Data, Measurements and Standards in SQL SQL for Smarties SQL Programming Style SQL Puzzles and Answers Thinking in Sets Trees and Hierarchies in SQL
|
|
|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Monday, May 13, 2013 10:44 AM
Points: 6,
Visits: 57
|
|
CELKO (12/18/2012)
.why everybody are acting like teachers? Some of us are teachers. And it is our duty to find students who cheat on their homework and get them expelled from their schools for it. Over the years I have gotten two students (New Zealand, guys with "do my homework" requests) and one instructor (reproducing copyrighted materials -- my books -- without permission from my publisher). Please post DDL, so that people do not have to guess what the keys, constraints, Declarative Referential Integrity, data types, etc. in your schema are. If you know how, follow ISO-11179 data element naming conventions and formatting rules. Temporal data should use ISO-8601 formats. Code should be in Standard SQL as much as possible and not local dialect. This is minimal polite behavior on SQL forums.
thank you for the explanation CELKO. it does make sense... i dont want this forum to be cheaters way out either...i am not a DBA either a student, was jus trying to learn SQL by myself. well as i said i am new and havent gone through all those formats/rules (which i should). but at least if somebody can tell me wht functions can get me to my result i could start trying them out.
|
|
|
|
|
SSCommitted
      
Group: General Forum Members
Last Login: Tuesday, January 15, 2013 11:11 AM
Points: 1,945,
Visits: 2,782
|
|
I think you meant monotonic increasing and not increment . Let's use ISO-11179 names and the MySQL year format:
CREATE TABLE Inventory (product_name VARCHAR(32) NOT NULL, inventory_year CHAR(10) NOT NULL, PRIMARY KEY(product_name, inventory_year), onhand_qty INTEGER NOT NULL CHECK(onhand_qty >= 0));
INSERT INTO Inventory VALUES ('Computer', '2009-00-00' 100), ('Computer', '2010-00-00' 200), ('Computer', '2011-00-00' 300), ('Computer', '2012-00-00' 400), ('printer', '2009-00-00' 100), ('printer', '2010-00-00' 200), ('printer', '2011-00-00' 250), ('printer', '2012-00-00' 250), ('flash Drive', '2009-00-00' 400), ('flash Drive', '2010-00-00' 500), ('flash Drive', '2011-00-00' 700), ('flash Drive', '2012-00-00' 900), ('monitor', '2009-00-00' 200), ('monitor', '2010-00-00' 300), ('monitor', '2011-00-00' 250), ('monitor', '2012-00-00' 400), ('keyboard', '2009-00-00' 100), ('keyboard', '2010-00-00' 150), ('keyboard', '2011-00-00' 200), ('keyboard', '2012-00-00' 150));
SELECT X.product_name FROM (SELECT product_name, (ROW_NUMBER() OVER(PARTITION BY product_name ORDER BY inventory_year) - ROW_NUMBER() OVER(PARTITION BY product_name ORDER BY onhand_qty)) AS compare_seq_delta FROM Inventory) AS X GROUP BY X.product_name HAVING MIN(compare_seq_delta) = 0 AND MAX(compare_seq_delta) = 0;
Untested.
Books in Celko Series for Morgan-Kaufmann Publishing Analytics and OLAP in SQL Data and Databases: Concepts in Practice Data, Measurements and Standards in SQL SQL for Smarties SQL Programming Style SQL Puzzles and Answers Thinking in Sets Trees and Hierarchies in SQL
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Yesterday @ 9:57 PM
Points: 32,906,
Visits: 26,790
|
|
CELKO (12/18/2012) Let's use {snip} and the MySQL year format:
Since this is an SQL Server forum, let's not. Besides, that break a cardinal rule... though shalt not store dates as character based data.
Untested
Why not? You've got the data and the code. Press the {f5} key and run it!
--Jeff Moden "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Yesterday @ 9:57 PM
Points: 32,906,
Visits: 26,790
|
|
Nisean (12/18/2012) thank you for the response. FYI this is not a homework or an interview question. i know how to create a table and insert data on it! i need a query which will give me the required result.and yes i even couldnt figure out how to start on this!! anybody!!???
The purpose is that a lot of people like to test their solutions before they post them. If you post readily consumable data, it makes it easier for them which means you get better answers quicker. Please see the first link after my signature line below for a more detailed explanation.
--Jeff Moden "RBAR is pronounced "ree-bar" and is a "Modenism" for "Row-By-Agonizing-Row".
First step towards the paradigm shift of writing Set Based code: Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following... http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following... http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
|
|
|
|