I have a website that allows customers to browse and place
orders for certain products.
I have 2 tables; Customers and Orders. The Customers table
holds the customer records and the Orders table
holds the orders placed by the customer. Both tables are
tied based on the field Cust_ID.
Example of the data is shown below:
Cust_ID Cust_Name Cust_ID Product Amount Order_Date
1001 John Tan 1001 P-5211 $120.00 2/13/2006
1002 Michael Wong 1001 K-1428 $88.90 1/11/2006
1003 Mary Cheong 1003 C-0923 $82.50 1/27/2006
1004 Ahmad Suffian 1003 K-1428 $88.90 2/2/2006
Write a single SQL statement that extracts all purchase
records with the following criteria:
1. Customer names starting with “M” only.
2. Orders placed within the current month only.
3. Amount does not exceed $100.00
The list must be sorted by order date with the latest order
showing on top.

Answers were Sorted based on User's Feedback



I have a website that allows customers to browse and place orders for certain products. I have 2 ..

Answer / santhi kandasamy

In oracle.,

Select * from customers, orders where
CUSTOMERS.CUST_ID=ORDERS.CUST_ID AND
Cust_name like 'M%' AND
TO_CHAR(orderdate,'mm,yyyy')= TO_CHAR(sysdate,'mm,yyyy') AND
SUBSTR(amount,2)<=100.00
ORDER BY ORDERDATE DESC;

Is This Answer Correct ?    1 Yes 0 No

I have a website that allows customers to browse and place orders for certain products. I have 2 ..

Answer / bobby

IN SQL SERVER

select * from (select
c.cust_ID,Cust_Name,product,Amount,order_Date from Customer
c join Orders o
on c.cust_Id=o.cust_ID)p where Cust_Name like 'M%'and
(datename("mm",order_Date)=datename("mm",getdate()))
and amount<100 order by order_Date desc

Is This Answer Correct ?    1 Yes 0 No

I have a website that allows customers to browse and place orders for certain products. I have 2 ..

Answer / santhi kandasamy

In oracle.,

Select * from customers, orders where
CUSTOMERS.CUST_ID=ORDERS.CUST_ID AND
Cust_name like 'M%' AND
TO_CHAR(orderdate,'mm,yyyy')= TO_CHAR(sysdate,'mm,yyyy') AND
SUBSTR(amount,2)<=100.00;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

How do you Implement SSIS Packages in your Project?

0 Answers  


When I delete any data from a table, does the sql server reduce the size of that table?

0 Answers  


List some case manipulation functions in sql?

0 Answers  


How to get the definition of a trigger back?

0 Answers  


How to round a numeric value to a specific precision?

0 Answers  






What does it mean to invest in the index?

0 Answers  


What is service broker? : sql server database administration

0 Answers  


Explain index in sql server?

0 Answers  


What is ms sql server reporting services?

0 Answers  


How to create a new login name in ms sql server?

0 Answers  


How do I find the size of a sql server database?

0 Answers  


What is the difference function and stored procedure?

0 Answers  


Categories