No description
sql | ||
.gitignore | ||
README.md | ||
script.sh |
SQLITE Test Area
This is a small test area how to edit SQLite databases and update some values according to their value.
Files
├── script.sh
├── sql
│ ├── create_db.sql
│ ├── insert_data.sql
│ └── show_all.sql
└── test.db
script.sh
: Small script to executre commands inside the sql-files (seesql/
)sql/
create_db.sql
: creates the small test databaseinsert_data.sql
: insert some fictive test values into the databaseshow_all.sql
: Shows all the data inside the database from table customers