Skip to content

finished #92

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
69 changes: 69 additions & 0 deletions files_for_lab/lab1_bank-kdr.sqbpro
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
<?xml version="1.0" encoding="UTF-8"?><sqlb_project><db path="lab1_bank.sqlite" readonly="0" foreign_keys="1" case_sensitive_like="0" temp_store="0" wal_autocheckpoint="1000" synchronous="2"/><attached/><window><main_tabs open="structure browser pragmas query" current="3"/></window><tab_structure><column_width id="0" width="300"/><column_width id="1" width="0"/><column_width id="2" width="100"/><column_width id="3" width="2772"/><column_width id="4" width="0"/><expanded_item id="0" parent="1"/><expanded_item id="1" parent="0"/><expanded_item id="5" parent="0"/><expanded_item id="6" parent="0"/><expanded_item id="1" parent="1"/><expanded_item id="2" parent="1"/><expanded_item id="3" parent="1"/></tab_structure><tab_browse><table title="account" custom_title="0" dock_id="2" table="4,7:mainaccount"/><dock_state state="000000ff00000000fd00000001000000020000000000000000fc0100000002fb000000160064006f0063006b00420072006f00770073006500310100000000ffffffff0000000000000000fb000000160064006f0063006b00420072006f00770073006500320100000000ffffffff0000011700ffffff000000000000000000000004000000040000000800000008fc00000000"/><default_encoding codec=""/><browse_table_settings/></tab_browse><tab_sql><sql name="SQL 1">SELECT *
From account
Where district_id = 1
LIMIT 5;
</sql><sql name="SQL 2">SELECT *
FROM client
WHERE district_id = 72
ORDER BY district_id DESC
LIMIT 1;
</sql><sql name="SQL 3">SELECT *
FROM loan
ORDER BY amount ASC
LIMIT 3;</sql><sql name="SQL 4">SELECT DISTINCT status
FROM loan
ORDER BY status</sql><sql name="SQL 5">SELECT loan_id
FROM loan
ORDER BY payments DESC
LIMIT 1;</sql><sql name="SQL 6">SELECT account_id, amount
FROM loan
ORDER BY account_id ASC
LIMIT 5;
</sql><sql name="SQL 7">SELECT account_id
FROM loan
WHERE duration = 60
ORDER BY amount ASC
LIMIT 5;</sql><sql name="SQL 8">SELECT DISTINCT k_symbol
FROM 'order'

</sql><sql name="SQL 9">SELECT order_id
FROM 'order'
WHERE account_id = 34
</sql><sql name="SQL 10">SELECT account_id
from 'order'
where order_id between 29540 and 29560;
</sql><sql name="SQL 11">SELECT amount
From &quot;order&quot;
Where account_to = 30067122</sql><sql name="SQL 12">SELECT trans_id, date, type, amount
From trans
Where account_id = 793
Order by date DESC
Limit 10</sql><sql name="SQL 13">SELECT district_id, COUNT(*) AS clients
from client
where district_id &lt;= 10
Group by district_id
order by district_id ASC;
</sql><sql name="SQL 14">SELECT type, COUNT(*) AS card_count
FROM card
GROUP BY type
ORDER BY card_count DESC;
</sql><sql name="SQL 15">SELECT account_id, SUM(amount) AS total_amount
FROM loan
GROUP BY account_id
ORDER BY total_amount DESC
LIMIT 10;
</sql><sql name="SQL 16*">SELECT date, COUNT(loan_id) AS number_of_loans
FROM loan
WHERE date &lt;= 930907
order BY date DESC;
</sql><sql name="SQL 17*">SELECT duration, COUNT(loan_id) AS number_of_loans
FROM loan
WHERE DATE &gt;= '971201' AND DATE &lt; '971231'
GROUP BY duration
ORDER BY DATE ASC, duration ASC;
</sql><sql name="SQL 18*">SELECT account_id, type, SUM(amount) AS total_amount
FROM trans
WHERE account_id = 396
GROUP BY account_id, type
ORDER BY type ASC;
</sql><current_tab id="17"/></tab_sql></sqlb_project>
Expand Down
Binary file removed files_for_lab/lab1_bank.sqlite
Binary file not shown.