-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsql_basics.py
245 lines (180 loc) · 9.46 KB
/
sql_basics.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
#sql_basics.py
# import libraries
import streamlit as st
from google.cloud import bigquery
from google.oauth2 import service_account
from PIL import Image
import pandas_gbq
#read credentails for BigQuery access
credentials = service_account.Credentials.from_service_account_info(
st.secrets["gcp_service_account"]
)
client = bigquery.Client(credentials=credentials)
project_id = 'web-app-341703'
def app():
st.subheader('SQL - Basics')
with st.container():
col1, col2 = st.columns([5,1])
#------Query1------
with col1:
with st.form(key='query1', clear_on_submit = True):
st.write("Return all hospitals in the state of California. [SELECT]")
st.code("SELECT hospital_name, city \nFROM hosp_info.hospital_general_information \nLIMIT 10")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/basic/SELECT.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh1', label='Refresh screen')
#------Query2------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query2', clear_on_submit = True):
st.write("Return all hospitals where the state is CA. [WHERE]")
st.code("SELECT hospital_name, city, state, county_name, hospital_type, hospital_ownership FROM hosp_info.hospital_general_information \nWHERE state = 'CA'")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/basic/WHERE.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh2', label='Refresh screen')
#------Query3------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query3', clear_on_submit = True):
st.write("Return all hospitals in the city of Orlando, Florida that are Acute Care Hospitals. [AND]")
st.code("SELECT hospital_name, state, hospital_type\nFROM hosp_info.hospital_general_information \nWHERE state='FL' AND hospital_type = 'Acute Care Hospitals'")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/basic/AND.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.write(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh3', label='Refresh screen')
#------Query4------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query4', clear_on_submit = True):
st.write("Return all hospitals in the state of CA or CO and are Acute Care VA Hospitals. [OR]")
st.code("SELECT hospital_name, city, state, county_name, hospital_type, hospital_ownership \nROM hosp_info.hospital_general_information \nWHERE (state='CA' OR state='CO') AND hospital_type='ACUTE CARE - VETERANS ADMINISTRATION'")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/basic/OR.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh4', label='Refresh screen')
#------Query5------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query5', clear_on_submit = True):
st.write("Return all hospitals by city and state ordered by state and ascending. [ORDER BY and ASC]")
st.code("SELECT hospital_name, city, state \nFROM hosp_info.hospital_general_information \nORDER BY state ASC\nLIMIT 25")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/basic/ORDER_BY_and_ASC.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh5', label='Refresh screen')
#------Query6------
with st.container():
col1, col2 = st.columns([5,1])
with col1:
with st.form(key='query6', clear_on_submit = True):
st.write("Return unique infection measure names. [DISTINCT]")
st.code("SELECT DISTINCT(measure_name), hospital_name \nFROM hosp_info.hospital_associated_infection")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/basic/DISTINCT.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
st.table(df)
with col2:
# this line is a shortcut to clicking the hamburger menu to refresh
st.button(key='Refresh6', label='Refresh screen')
#------Query7------
with st.container():
col1, col2, col3 = st.columns([3,3,3])
with col1:
st.write("Filter NULL values for the score for measure_name. [IS NOT NULL]")
image = Image.open('images/is_not_null_before.png')
st.image(image, caption='Before')
with col2:
with st.form(key='query7', clear_on_submit = True):
st.code("SELECT measure_name, score \nFROM hosp_info.hospital_associated_infection \nWHERE score IS NOT NULL \nLIMIT '10' ")
submit_code = st.form_submit_button("Execute")
if submit_code:
with open('queries/basic/IS_NOT_NULL.sql') as f:
contents = f.read()
df = pandas_gbq.read_gbq(contents, project_id, credentials=credentials)
with col3:
st.table(df)
st.image(image, caption='After')
st.button(key='Refresh7', label='Refresh screen')
#------Query8------
st.write("For the CREATE, INSERT, DROP, ALTER, UPDATE and DELETE statements I kept things simple by showing how the queries would be executed in the Bigquery console. ")
with st.container():
col1, col2 = st.columns([5,5])
with col1:
st.write("This query drops a new table if it exists, creates a new table and inserts a new record. [DROP, CREATE, INSERT]")
st.code("DROP TABLE IF EXISTS hosp_info.newtable;\nCREATE TABLE newtable\n(\n provider_npi INTEGER,\n provider_id INTEGER,\n hospital_name STRING,\n address STRING,\n city STRING,\n state STRING,\n state_code INTEGER,\n zipcode INTEGER,\n county_name STRING,\n phone_number STRING,\n hospital_type STRING,\n hospital_ownership STRING,\n emergency_services BOOLEAN,\n);\n\nINSERT INTO newtable\nVALUES (9893458312, 1015, 'WASHINGTON MEDICAL CLINIC', '300 PARSONS STREET', 'PRESCOTT', 'AZ', 4, 86313, 'YAVAPAI', '(928)445-4734', 'ACUTE CARE - VETERANS ADMINISTRATION', 'Government Federal', false);\n\nSELECT *\n FROM newtable;")
with col2:
image = Image.open('images/drop_create_insert.png')
st.image(image, caption='After')
#------Query9------
with st.container():
col1, col2 = st.columns([5,5])
with col1:
st.write("This query updates a record in the new table and returns the results of the update (Washington Medical Clinic to Washington Federal Medical Clinic). [UPDATE]")
st.write("\n")
st.code("UPDATE hosp_info.newtable\nSET hospital_name = 'WASHINGTON FEDERAL MEDICAL CLINIC'\nWHERE provider_id = 1015;\n\nSELECT * FROM hosp_info.newtable")
with col2:
st.write("\n")
st.write("\n")
st.write("\n")
st.write("\n")
image = Image.open('images/update.png')
st.image(image, caption='After')
#------Query10------
with st.container():
col1, col2 = st.columns([5,5])
with col1:
st.write("This query adds a new column to the new table. [ALTER]")
st.code("ALTER TABLE hosp_info.newtable\nADD COLUMN country STRING; \nSELECT * FROM hosp_info.newtable")
with col2:
st.write("\n")
st.write("\n")
st.write("\n")
st.write("\n")
image = Image.open('images/alter.png')
st.image(image, caption='After')
#------Query11------
with st.container():
col1, col2 = st.columns([5,5])
with col1:
st.write("This query deletes the record that was originally created. [DELETE]")
st.code("DELETE FROM hosp_info.newtable\nWHERE provider_id = 1015;\n\nSELECT * FROM hosp_info.newtable")
with col2:
st.write("\n")
st.write("\n")
st.write("\n")
st.write("\n")
image = Image.open('images/delete.png')
st.image(image, caption='After')