February 25, 2011 at 10:23 am
i am new to sql,i just know basic.
can anybody help me to solve this 2 query
1) A table named "merchants" contains merchant information and has the following fields:
name data type description
merchid integer merchant id number
merchname text name of merchant
category text category of merchant
A table named "bank_trans" contains purchase transaction data and has the following fields:
name data type description
transid integer unique id of transaction
merchid integer merchant id number
transdate date date of transaction 'YYYY-MM-DD'
cardnum text account number of transactor
amount numeric(9,2) dollar amount of transaction
a) Write a SQL query that will display the number of transactions and total dollars spent at XYZ, Inc. for each month during 2009.
2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level.
The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month.
The tables contain the following fields:
name data type description
account text account number
registered boolean indicates whether the account is registered
num_trans integer number of transactions made during the time period
spend numeric(9,2) total spend during the time period
a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009.
b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010
3) We have the same table as defined in question 2.
a) How can we check that the consolidated tables were generated correctly?
b) How can we find if there are any duplicates on the account number?
thanks in advance
February 25, 2011 at 10:32 am
Sounds like homework.
Since most of us already have their degree we don't need to answer those questions anymore. 😉
But we'd be glad to help you understand how it works if you would at least give it a try.
Show us what you've done and where you get stuck and we'll try to help.
Step one would be to help us help you by providing infromation in a ready to use format. An example is explained in the first article referenced in my signature.
February 25, 2011 at 10:56 am
I'll give you a few hints if you'll answer my final question.
daveriya (2/25/2011)
a) Write a SQL query that will display the number of transactions and total dollars spent at XYZ, Inc. for each month during 2009.
You want to look into the GROUP BY clause and WHERE clause.
a) Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009.
You're looking for the UNION ALL operator.
b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010
This comes under subqueries, and the JOIN mechanic.
a) How can we check that the consolidated tables were generated correctly?
There's a number of ways and I can't see that being in the same list of problems as the beginning of this list.
b) How can we find if there are any duplicates on the account number?
thanks in advance
Again, you're looking at the GROUP BY clause.
My question, and yes it's a serious one, not just a rant:
2) At the end of each month, a new table is created for each bank that contains monthly metrics consolidated at the account level.
The table naming convention is bankX_YYYYMM where X represents the numeric designation of the bank and YYYYMM indicates the 4 digit year and 2 digit month.
Are they STILL teaching this horrible mechanic to people?! Is this seriously what the book is teaching? If so, please give me the ISBN, I'd like to write a few scorching reviews. That technique should only be taught in advanced courses under the header of "Break only in emergency".
I've been shown the light, and this isn't as horrendous as I believed it to be. I still don't think it should be in a first or second year course without explicit conversation and methodology instructions.
Never stop learning, even if it hurts. Ego bruises are practically mandatory as you learn unless you've never risked enough to make a mistake.
For better assistance in answering your questions[/url] | Forum Netiquette
For index/tuning help, follow these directions.[/url] |Tally Tables[/url]
Twitter: @AnyWayDBA
February 25, 2011 at 12:57 pm
i know , i need to solve this on my own,
i solve first one,but in the second one
Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009.
can i write like this
select count(num_trans),sum(spend) from bank1_200910
unionall
select count(num_trans),sum(spend) from bank1_200911
union all
select count(num_trans),sum(spend) from bank1_200912
atleast give me hints
February 25, 2011 at 1:52 pm
daveriya (2/25/2011)
i know , i need to solve this on my own,i solve first one,but in the second one
Write a SQL query that will display the total number of transactions and total spend for "Bank1" during the 4th quarter of 2009.
can i write like this
select count(num_trans),sum(spend) from bank1_200910
unionall
select count(num_trans),sum(spend) from bank1_200911
union all
select count(num_trans),sum(spend) from bank1_200912
atleast give me hints
That looks like it would work. Have you tried it out?
Edit: Actually, those rollup tables have the totals already. What you need to do is to sum them up across all three months. Basically, make the above a subquery, and sum up the 3 rows you'll be getting from the tables.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
February 25, 2011 at 1:59 pm
i dont understand you this is not working.
write some query and show me.
this givesme result in 3 rows.how cam i make it subquery
February 25, 2011 at 2:12 pm
This link should give you some good examples of using subqueries.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
February 25, 2011 at 2:26 pm
i tried sunquery,i cant join them coz i think there is no pk->fk releation between them.
nothing is worked
February 25, 2011 at 2:46 pm
daveriya (2/25/2011)
i tried sunquery,i cant join them coz i think there is no pk->fk releation between them.nothing is worked
SELECT SUM(num_trans), SUM(spend)
FROM (
select num_trans,spend from bank1_200910
union all
select num_trans,spend from bank1_200911
union all
select num_trans,spend from bank1_200912) AS SubQuery
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
February 25, 2011 at 2:57 pm
hi,
its working ,thanks a lot.
i m trying to solve another one based on that,but thanks a lot
February 25, 2011 at 3:26 pm
2(b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010
SELECT SUM(num_trans) as 'No of Transactions', SUM(spend) as 'Total Spend'
FROM (
select num_trans,spend from bank1_201001 where registered = 0
union all
select num_trans,spend from bank2_201001 where registered = 0
)
registered
union all
SELECT SUM(num_trans) as 'No of Transactions', SUM(spend) as 'Total Spend'
FROM (
select num_trans,spend from bank1_201001 where registered = 1
union all
select num_trans,spend from bank2_201001 where registered = 1
)
nonregistered
Is this true?
February 25, 2011 at 6:48 pm
daveriya (2/25/2011)
2(b) Write a SQL query that will display the total number of transactions and total spend at "Bank1" and "Bank2", broken out by registered vs. non-registered accounts, during January 2010Is this true?
No.
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
February 25, 2011 at 9:52 pm
But i am getting result,whats wrong in this?tell me
February 26, 2011 at 11:31 pm
daveriya (2/25/2011)
But i am getting result,whats wrong in this?tell me
You may get correct results, but it would be better to use GROUP BY.
Paul White
SQLPerformance.com
SQLkiwi blog
@SQL_Kiwi
February 27, 2011 at 5:57 am
group by o f what?registered
Viewing 15 posts - 1 through 15 (of 46 total)
You must be logged in to reply to this topic. Login to reply