Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/exercise.sql_simple-queries.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions Lakshmi bulusu.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
-- PART 1.SQL
SELECT productName,productLine,buyPrice FROM products ORDER BY buyprice DESC;
--PART 2.SQL
SELECT contactLastName,contactFirstName,city FROM customers WHERE country='Germany' ORDER BY contactLastName ASC;
--PART 3.SQL
SELECT DISTINCT STATUS FROM orders ORDER BY STATUS ASC;
--PART 4.SQL
select * FROM payments WHERE paymentDate >'2005-01-01' ORDER BY paymentDate ASC;
--PART 5.SQL
SELECT lastName,firstName,email,jobTitle FROM employees,offices WHERE employees.officeCode=offices.officeCode AND city='San Francisco';
--PART 6.SQL
SELECT productName,productLine,productScale,productVendor FROM products
WHERE productname IN (SELECT productname FROM products where productLine IN ("Vintage Cars","Classic Cars") ORDER BY productLine desc)
ORDER BY productName;

Binary file added ~$iginal-readme.docx
Binary file not shown.