Fork, Commit, Merge - Easy Issue (SQL) #958
Labels
easy
first-contributor
first-contributors
good first issue
Good for newcomers
help wanted
Extra attention is needed
sql
sqlite
up-for-grabs
Fork, Commit, Merge - Easy Issue (SQL)
Write a SQL script to Create a users Table
Note: You don't have ask permission to start solving the issue or get assigned, since these issues are supposed to be always open for new contributors. The actions-user bot will reset the file back to previous state for the next contributor after your commit is merged. So you can just simply start working with the issue right away!
Description:
The goal of this task is to write a SQL script that creates a simple table. The script should create a table named users with the following columns:
Here are the steps to do that:
tasks/sql/easy
directory from the root of your project.create_users.sql
file and add all the requested fields.create_users.sql
file is located with commandcd tasks/sql/easy
.sqlite3 mydatabase.db
to create and connect your SQLite database..read create_users.sql
to run the script and create the users table.PRAGMA table_info(users);
If the table was created successfully, the output should look like something like this:
If the output looks correct, you are done and ready to make a pull request!
For this issue, you need to have sqlite installed to your local machine.
Check out README.md for more instructions of how to install sqlite and how to make a pull request.
Feel free to ask any questions here if you have some problems!
Also, kindly give this project a star to enhance its visibility for new developers!
The text was updated successfully, but these errors were encountered: