Helper script to show all the entries from St. Gallen
This commit is contained in:
parent
a0c47ca97c
commit
a162408275
2 changed files with 5 additions and 0 deletions
|
@ -4,6 +4,8 @@ if [[ $1 -eq "0" ]]; then
|
|||
sqlite3 test.db ".read sql/create_db.sql"
|
||||
elif [[ $1 -eq "1" ]]; then
|
||||
sqlite3 test.db ".read sql/insert_data.sql"
|
||||
elif [[ $1 -eq "2" ]]; then
|
||||
sqlite3 test.db ".read sql/show_sg.sql"
|
||||
elif [[ $1 -eq "9" ]]; then
|
||||
sqlite3 test.db ".read sql/show_all.sql"
|
||||
fi
|
||||
|
|
3
sql/show_sg.sql
Normal file
3
sql/show_sg.sql
Normal file
|
@ -0,0 +1,3 @@
|
|||
SELECT *
|
||||
from customers
|
||||
where CITY LIKE "St.%gallen";
|
Loading…
Reference in a new issue