We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create database [dbname];
create user '[user]'@'[host]' identified by '[pass]'; grant all privileges on dbname.* to '[user]'@'[host]';
create table [dbname].[tablename] ( field1 type1, filed2 type2 );
for this project:
create table fosscon.users ( id int not null primary key auto_increment, email varchar(200), name varchar(200), phone varchar(20), stdnum varchar(7), workshop_num int, uniqid varchar(15) );
use [dbname]; show tables;
The text was updated successfully, but these errors were encountered:
professormahi
No branches or pull requests
Create database
Create user and grant access
Create a table
for this project:
Show tables
The text was updated successfully, but these errors were encountered: