40 likes | 114 Views
Access, practice, and submit MySQL queries with step-by-step instructions for CSE class projects. Ensure your queries work smoothly.
E N D
“Source” the file • Download tables.sql from the class website • Upload it into your cse account • “source” the file at the command line • mysql -h student-db -u [EUID] -p [EUID] < tables.sql • Example: mysql-h student-db -u jwp0101 -p jwp0101 < tables.sql • Your password is your EUID unless you change it • If you have having password problems, contact Matt Kernanmkernan@unt.edu
Querying at the Command Line • Log in to your mysql account • mysql -h student-db -u [EUID] –p • Use your database • use [EUID]; • Practice writing queries • When you are satisfied with the query, copy it into file [lastname]_[firstname]_MySQL.sql
[lastname]_[firstname]_MySQL.sql • Use comments for the English version • Number the queries • Place your SQL query underneath: -- 1. Find the table names of all existing tables created by you show tables; -- 2. Find the schema of the borrower table etc... • Save the file regularly
Submitting the file • Source the file to ensure your queries work • Submit the file using the project command: project submit 4350s001 banking [filename]