create database vehicles;
use vehicles
create table trucks (name varchar(10));
insert into trucks values ('dodge');
insert into trucks values ('toyota');
insert into trucks values ('ford');
delete from trucks where name= 'ford';
select * from trucks;
create user 'tom'@'localhost' identified with mysql_native_password by 'somepassword';
mysql.db
mysql.user
mysql -u <username> -p -h <host>
mysql -u carlos -p -h db.thegummibear.com
Generally speaking, when you create a new web app you will:
What information will web app need in order to connect successfully to db?
flush privileges