📺 Develpreneur YouTube Episode

Video + transcript

SQL Tutorial - Day 2

2022-04-07 •Youtube

Detailed Notes

We continue our series and install our database.

1. Database installation summary 2. Root vs other users 3. Create a user https://dev.mysql.com/doc/refman/8.0/en/create-user.html CREATE USER 'sammy'@'localhost' IDENTIFIED BY 'password'; 4. Grant privileges GRANT ALL PRIVILEGES ON *.* TO 'user1'@localhost IDENTIFIED BY 'password1'; GRANT ALL PRIVILEGES ON 'yourDB'.* TO 'user1'@localhost; flush privileges; 5. Delete a user drop user 'user1'@localhost 6. Create a Database 7. Use Database 8. Drop a Database

Transcript Text
[Music]
hello and welcome back we are on day two
we're looking at getting started on our
sql tutorials
now
i mentioned yesterday and hopefully or
last time we met
and hopefully you did some preparing
the idea of
downloading the database
now this could be
most likely maybe sql server or mariadb
if you go to
mariadb.org
dot org you can see where the latest
versions are
and
uh you can probably go back all the way
to
hours our version that we're working
with that i'm working with
but you shouldn't see too much
differences in it
now if you want to see how to install it
then you can see pretty easily you can
do an example of
installing my sql
on let's say linux
and
you can see some stuff here we're going
to see like what your command lines are
going to look like everything like that
because depending on what you're doing
you've got different
some very different installations
now whatever you do
you should end up
as part of the installation you should
have some sort of a root user
uh it's in my sequel it's called root uh
it may be
uh dbo or something like that but you've
got some
primary owner
now
we are today one of the things we're
going to look at is creating a user and
granting privileges and so this right
away is going to get into
database specific things
i'm going to show you how it's done in
mysql you can follow along if you're
using mysql if you're using a different
database engine then you may have to do
a little you know searching to see how
it gets done in your
um in your specific environment
because it could vary
widely
and
it could be something that um
you know
this is completely confusing when i
start putting some of these commands in
they may be completely wrong and broken
so if you're on something other than my
sql maria db
uh take a look through it take a look at
what the specifics are
now
you will probably have you've got a
root user so if
depending on how you did it
you should be able to you would have
something like a and this is from my
sequel is to log in once you've
installed everything and you probably
will see this in the commands but just
to be sure you're going to do something
like mysql it says this is the engine
user it's going to be your username and
then dash p and then when you do it it's
going to say enter a password
now mine is not set up i've got it
secured so that root user is not
available if unless i am
root itself so i have to go all the way
up
and i probably didn't type my password
right
and in so doing now i can do with
without anything and because i am root
on this machine
it's going to come in and
and b
i'm root i could also do i think though
if i do
root with dash p i think i've blocked
that out so it's if i give it a password
oh okay so it does do it here so i also
i have it locked down so you can only
install only be root if you're
root essentially uh let me make sure who
i am okay
let me drop back down one more
and then
um
now what i did is i created a user
called rob and gave it a password
and it has access to everything
so we talked about this you don't want
your root user to be the one you use
most the time
so
instead what you want to do is create a
like a developer user
in the my sequel world
and i'm going to have some links in this
show notes on doing this but it's pretty
easy is you're going to do create user
and let me call him
i'm going to call him tutor
at
let's say
at star so it depends he can log in from
anywhere well let's keep him localhost
tutor at localhost and then i'm going to
tell it
identified by which is basically the
password
and my password is going to be just um
let's do tutor one two three ah let's
just do test one two three this is like
a really simple do not use this yourself
unless it's a completely internal uh
unavailable database
so
now when i did this
um
i've created a user and now i can log in
as tutor so if i do this let me quit
and if i do my sql dash u
tutor
dash p
test one two three okay so now i'm i'm
logged in but now
i have this command so i can see what
are all the databases that are available
practically none that i can see however
if i come back out and log in as
the rob user which can't i gotta type
that right again
if i log in as that user
and then do show databases i'm gonna be
able to see a ton of databases because i
can see everything the only one i saw
before was the information screen uh
schema
now i will show you
uh in this my sequel world if you ever
wonder
what
users you have
uh within the database there's this
command called use
and that's using a specific database so
i'm going to use mysql
and that puts me in
quote you know that's the context that
i'm now in my sql so if i use if i want
to look at the tables
i do show tables
these are the tables here that exist in
the my sql database including
user so if i do select star from user
i'm going to see a bunch of data
and it's
so here's the actually let me do it this
way is i can see all the data that's in
that table
but let me do this i'm gonna see what
are the
columns
and let me do uh
let's do oh let's just do host user and
password
host user password
from user
is that right
oh shoot yeah those are all cap
and i wonder if that'll work i think
that'll work
so
so i'm going to show you this as you can
see
here
that guy just created
that password so that's tutor on
localhost
this password is not test123 because it
is encrypted in the database
and so you're not going to be the only
way you're going to be able to find out
what a password is
is to either guess it correctly or
you can change a password you can update
a password
we're going to get into those things a
little bit later today i just wanted to
basically do the let's create a user
and then when i'm uh let's see oh i'm
i'm who i am so now
i can create a user
and then i can drop a user which is
going to be the same one so it's going
to be tutorial
at localhost if i do that
and now if i look at the users i don't
see he doesn't exist anymore
so let me
go with first let's create a database
so you want to create a database and
this is something you're going to want
to hold on you're going to do and work
with for a while
so let's do create a date create
database
and let's call it tutorial
because this one we're going to work
with
and if i do that now i can see okay
created a database if i use use tutorial
i'm in that database if i do
show tables
whoops i have to um
i have to type it right
then there's no tables in here i haven't
created a table yet in my database i can
also get rid of my database and if i do
it gets rid of everything in the
database you do not want to do this
unless it's basically an empty database
so if i drop database tutorial
if i do show databases i'm going to see
that tutorial does not exist if i go
back and create it
and then do show databases
then here it is
now let me do this real quick i want to
i do want to jump back to
oh i've got to create that user again i
apologize
so let's look back at creating that user
so if i do
create where to put create
create
user there we go create user tutor local
host identified by tesla okay so i'm
going to create him
and now
i'm going to go back and log in as him
and remember i do show databases
if i do create database
tutorial or let's do
um
let's just call it my database my
database
now
i'm going to get access denied because i
created this user and have
very little permissions granted to them
so i'm not able to create a database
now
i can create a database and then assign
those permissions to my user
which is
basically what i'm going to do here in a
minute or i can assign to
i can assign them to up to like for
example here if i do
um
and this is called grant privileges and
so this is where we're getting a little
bit into this getting into permissions
so i can do
uh if i want i need to grant all
privileges if i can spell it right
privileges
on and i can do star dot star
to
and then i give it the username so if i
do tutor at localhost
now i try to do it as me
as tutor remember i'm logged into tutor
then
i'm going to get access denied because i
can't grant myself those permissions
however
if i come in as me
now
if i want to do grant all privileges
then what i need to do is
oops i need him i think he needs to be
identified by
what was it test one two three
oh
rob is not able to do it i have to be
root i did not give rob the ability even
to grant these permissions
however i can
let's see do i have
okay so i do have my tutorial database
but what i can do so i can't grant
privileges to everything
but
i can do
everything on the tutorial database
oops
maybe i'm not
let's make sure i don't have that i may
not be able to grant permissions i think
i don't have i didn't give myself grant
permission let's uh
let's see if i can see that from here
uh i want to select
sir
from user
so i want to do select
star from
user
where
user whoops
equals rom
and so i can see here
now you can see a bunch of privileges up
here so i can see there's selects
inserts updates deletes
reload process grant
so if i go look at
grant privilege
let's do grant proof and let's see if i
have any others that i want to give
um
that'll probably be good for now
and i can see that i don't have grant
privileges but
i can do
let's see
um
and now i'm playing around a little bit
because i have not done this very uh
where did my other little there there's
my other window
um
so
there okay
i should get that pretty easy so blank
on that to
rob at star let's see if that'll work
um
i wonder if i can do grant proof
probably not so i'm just going to cheat
so i'm going to do update
user
set whoops
grant
proof equal
y
where
user equals
oh
dang it because rob is a string
is that where i blew it up earlier
oh it probably is okay so actually if i
want to do grant grant to
let's see if i do that does that make it
let me try one more time
okay anyways so now
if i go back to my select
now i see that i have grant privileges
so now
if i come back in
here
oh i guess i wasn't as many anyways i
was able to sort of cheat
but now
i come in here and i want to do grant
uh
all privileges on tutorial.star to them
let's see if i can get away with that
nope i can't do it oh because i don't
have
interesting
let me see
if i do
grant all privileges
whoops
star 2
rob at star
oh
let's see where i'm at oh i know what it
is
oh so it doesn't allow that so now i do
have to come in as my super dude
so now if i come in here
and i grant all privileges
and that works and if i want to grant
everything to the tutor
i can do that now one of the things
we've got to remember when we're signing
privileges is we need to be able to when
you're done you want to flush which is
going to update everything crosstalk
privileges
so now
if i go to
uh let's see who do i want to be oh i
don't want to do let me get back to here
so now if i log in as tutor
because i granted access to that
database
i can see tutorial i can use tutorial
i'm going to do create table
oh this is going to be tough um
table one
as
this thing which is just going to be um
name
varchar 10
let's see if that'll work i'm trying to
get the most simple create
but i don't have that right now so i'm
going to actually deal with that in
another time
but i can go in
and
see something at least within this
because i do show tables
and there are none in tutorial i'm going
to get into this a little bit further
next episode
right now what i want to do is walk
through creating a user granting some
privileges deleting a user because what
we want to do
and this is sort of your homework
create a user and probably call him like
if you can
tutor and then give him a good
uh password or go with a very simple one
if this is a database that is has no
outside access
and then create your database
which is again that's just going to be
create database
tutorial
and then
see it's already created and then you're
going to do use tutorial and
that is essentially where we're going to
be when we pick up on the next episode
because what we're going to do is we now
have a database so we have sort of a
a place to work if you think back to the
prior episode where we had the
spreadsheet example
what we've done at this point is we've
opened up our spreadsheet software and
we have a blank workbook
and you can sort of think of it that way
if
this workbook
back to that prior example
i could call this
um
i'm just going to call it my databases
and well actually i'm sorry this would
be so these would be tables within it so
this would now be
if i can if i can drag and drop properly
so this would be like the tutorial
database
which at this point would have actually
nothing
um so i can take all this and this all
does not exist
because table one is not really i
haven't created it yet so this gave me
the creation of table one
and we're going to call this um
this is going to end up be calling
yeah
i'm going to call this basic table
because that's what we're going to
create next time around
is we're going to create a table we're
going to create some columns
and we're going to start doing some very
basic stuff within it
and we're going to swing back around so
we're going to work on our
on creating a table first with
very simple data we're not going to get
too deep into it as we're going to run
into a few of these things these first
few episodes we're going to
as i did even a little bit today we're
going to jump ahead and talk about some
concepts here and there that
it's sort of take our word for it and
later we're going to dig deeper into it
so at this point
if you're set for the next episode then
you've got your engine installed
you have a user that you're going to be
using for this
series
and you've created a database so we've
got a starting point when we start
creating tables
in that next episode
that being said it's time to move on and
get prepared for that next episode
so go out there have yourself a great
day a great week and we will talk to you
next time
you
Transcript Segments
0.48

[Music]

26.4

hello and welcome back we are on day two

30.08

we're looking at getting started on our

32.32

sql tutorials

33.84

now

35.12

i mentioned yesterday and hopefully or

37.28

last time we met

38.559

and hopefully you did some preparing

40.96

the idea of

43.36

downloading the database

47.36

now this could be

49.6

most likely maybe sql server or mariadb

53.6

if you go to

54.84

mariadb.org

56.559

dot org you can see where the latest

58.559

versions are

59.92

and

60.719

uh you can probably go back all the way

62.48

to

63.199

hours our version that we're working

64.96

with that i'm working with

67.04

but you shouldn't see too much

68.96

differences in it

70.72

now if you want to see how to install it

74.4

then you can see pretty easily you can

76.96

do an example of

79.2

installing my sql

82.32

on let's say linux

85.439

and

88.32

you can see some stuff here we're going

89.84

to see like what your command lines are

91.439

going to look like everything like that

93.04

because depending on what you're doing

94.479

you've got different

96.32

some very different installations

98.64

now whatever you do

100.72

you should end up

102.799

as part of the installation you should

104.64

have some sort of a root user

107.2

uh it's in my sequel it's called root uh

109.759

it may be

111.04

uh dbo or something like that but you've

112.72

got some

114.56

primary owner

116.799

now

118.32

we are today one of the things we're

120

going to look at is creating a user and

122.399

granting privileges and so this right

124.56

away is going to get into

127.04

database specific things

129.52

i'm going to show you how it's done in

130.72

mysql you can follow along if you're

132.72

using mysql if you're using a different

134.48

database engine then you may have to do

138

a little you know searching to see how

140.56

it gets done in your

142.8

um in your specific environment

147.92

because it could vary

150.16

widely

151.36

and

152.64

it could be something that um

155.599

you know

156.64

this is completely confusing when i

158.72

start putting some of these commands in

160.319

they may be completely wrong and broken

162.239

so if you're on something other than my

164.16

sql maria db

165.92

uh take a look through it take a look at

167.68

what the specifics are

170.08

now

171.2

you will probably have you've got a

174.64

root user so if

176.56

depending on how you did it

179.599

you should be able to you would have

181.2

something like a and this is from my

183.04

sequel is to log in once you've

185.36

installed everything and you probably

186.879

will see this in the commands but just

189.04

to be sure you're going to do something

190.72

like mysql it says this is the engine

193.92

user it's going to be your username and

195.519

then dash p and then when you do it it's

197.2

going to say enter a password

199.599

now mine is not set up i've got it

202.159

secured so that root user is not

204.72

available if unless i am

209.28

root itself so i have to go all the way

212.959

up

214.959

and i probably didn't type my password

216.72

right

218.56

and in so doing now i can do with

220.879

without anything and because i am root

223.84

on this machine

225.28

it's going to come in and

226.959

and b

228.239

i'm root i could also do i think though

230.959

if i do

232

root with dash p i think i've blocked

233.76

that out so it's if i give it a password

236.72

oh okay so it does do it here so i also

239.12

i have it locked down so you can only

240.56

install only be root if you're

242.64

root essentially uh let me make sure who

245.12

i am okay

247.76

let me drop back down one more

250.08

and then

251.2

um

252.08

now what i did is i created a user

254.64

called rob and gave it a password

258.079

and it has access to everything

260.72

so we talked about this you don't want

262

your root user to be the one you use

263.68

most the time

265.52

so

266.4

instead what you want to do is create a

269.6

like a developer user

271.6

in the my sequel world

273.36

and i'm going to have some links in this

274.88

show notes on doing this but it's pretty

276.479

easy is you're going to do create user

279.36

and let me call him

283.12

i'm going to call him tutor

286.08

at

288.16

let's say

289.68

at star so it depends he can log in from

291.919

anywhere well let's keep him localhost

294.479

tutor at localhost and then i'm going to

296.639

tell it

297.96

identified by which is basically the

300.32

password

301.52

and my password is going to be just um

304.639

let's do tutor one two three ah let's

307.36

just do test one two three this is like

308.88

a really simple do not use this yourself

311.52

unless it's a completely internal uh

314.24

unavailable database

316.56

so

317.68

now when i did this

319.44

um

320.4

i've created a user and now i can log in

322.96

as tutor so if i do this let me quit

326.96

and if i do my sql dash u

331.68

tutor

333.039

dash p

335.12

test one two three okay so now i'm i'm

337.759

logged in but now

339.919

i have this command so i can see what

341.28

are all the databases that are available

343.68

practically none that i can see however

347.36

if i come back out and log in as

351.199

the rob user which can't i gotta type

353.28

that right again

356.4

if i log in as that user

358.639

and then do show databases i'm gonna be

360.56

able to see a ton of databases because i

363.36

can see everything the only one i saw

365.36

before was the information screen uh

367.039

schema

368.56

now i will show you

370.16

uh in this my sequel world if you ever

372.8

wonder

374.72

what

375.68

users you have

377.36

uh within the database there's this

378.96

command called use

380.56

and that's using a specific database so

382.639

i'm going to use mysql

384.8

and that puts me in

386.72

quote you know that's the context that

388.16

i'm now in my sql so if i use if i want

390.479

to look at the tables

392.24

i do show tables

394.8

these are the tables here that exist in

397.199

the my sql database including

399.759

user so if i do select star from user

404.08

i'm going to see a bunch of data

406.56

and it's

407.44

so here's the actually let me do it this

409.52

way is i can see all the data that's in

411.919

that table

413.12

but let me do this i'm gonna see what

415.039

are the

416.16

columns

419.759

and let me do uh

423.199

let's do oh let's just do host user and

425.12

password

427.919

host user password

432.639

from user

433.919

is that right

435.68

oh shoot yeah those are all cap

439.36

and i wonder if that'll work i think

440.639

that'll work

442.08

so

443.68

so i'm going to show you this as you can

445.12

see

446

here

447.199

that guy just created

449.28

that password so that's tutor on

451.84

localhost

453.36

this password is not test123 because it

457.44

is encrypted in the database

460.479

and so you're not going to be the only

461.919

way you're going to be able to find out

463.36

what a password is

464.8

is to either guess it correctly or

468.08

you can change a password you can update

469.919

a password

471.599

we're going to get into those things a

472.96

little bit later today i just wanted to

475.52

basically do the let's create a user

479.44

and then when i'm uh let's see oh i'm

482.72

i'm who i am so now

484.479

i can create a user

486.16

and then i can drop a user which is

488.319

going to be the same one so it's going

490.08

to be tutorial

495.36

at localhost if i do that

498.879

and now if i look at the users i don't

500.96

see he doesn't exist anymore

505.84

so let me

506.96

go with first let's create a database

509.84

so you want to create a database and

511.199

this is something you're going to want

512

to hold on you're going to do and work

514.08

with for a while

515.68

so let's do create a date create

517.039

database

518.159

and let's call it tutorial

520.56

because this one we're going to work

521.68

with

523.2

and if i do that now i can see okay

525.68

created a database if i use use tutorial

529.36

i'm in that database if i do

532.32

show tables

534.64

whoops i have to um

538

i have to type it right

540.64

then there's no tables in here i haven't

542.48

created a table yet in my database i can

544.959

also get rid of my database and if i do

547.36

it gets rid of everything in the

549.04

database you do not want to do this

551.44

unless it's basically an empty database

554.48

so if i drop database tutorial

556.64

if i do show databases i'm going to see

559.839

that tutorial does not exist if i go

562.16

back and create it

565.2

and then do show databases

567.76

then here it is

569.92

now let me do this real quick i want to

571.76

i do want to jump back to

575.12

oh i've got to create that user again i

577.12

apologize

581.2

so let's look back at creating that user

583.76

so if i do

584.92

create where to put create

587.76

create

588.839

user there we go create user tutor local

591.839

host identified by tesla okay so i'm

593.36

going to create him

594.8

and now

597.04

i'm going to go back and log in as him

604.48

and remember i do show databases

607.839

if i do create database

611.12

tutorial or let's do

613.36

um

616.16

let's just call it my database my

618.56

database

621.279

now

623.36

i'm going to get access denied because i

625.839

created this user and have

628

very little permissions granted to them

632.32

so i'm not able to create a database

635.76

now

636.959

i can create a database and then assign

640.32

those permissions to my user

642.72

which is

644.16

basically what i'm going to do here in a

645.519

minute or i can assign to

648.959

i can assign them to up to like for

651.2

example here if i do

654.72

um

655.68

and this is called grant privileges and

657.36

so this is where we're getting a little

658.399

bit into this getting into permissions

661.519

so i can do

663.36

uh if i want i need to grant all

666.76

privileges if i can spell it right

669.079

privileges

670.8

on and i can do star dot star

674.56

to

675.36

and then i give it the username so if i

676.64

do tutor at localhost

678.88

now i try to do it as me

681.68

as tutor remember i'm logged into tutor

684.88

then

688

i'm going to get access denied because i

689.839

can't grant myself those permissions

692.24

however

694.8

if i come in as me

698.16

now

699.92

if i want to do grant all privileges

706.8

then what i need to do is

711.279

oops i need him i think he needs to be

713.2

identified by

718.16

what was it test one two three

721.68

oh

722.56

rob is not able to do it i have to be

724.399

root i did not give rob the ability even

726.639

to grant these permissions

728.839

however i can

731.2

let's see do i have

735.92

okay so i do have my tutorial database

737.6

but what i can do so i can't grant

739.12

privileges to everything

741.839

but

742.639

i can do

746.48

everything on the tutorial database

750.079

oops

752.24

maybe i'm not

758.48

let's make sure i don't have that i may

760.48

not be able to grant permissions i think

762.399

i don't have i didn't give myself grant

764.24

permission let's uh

767.04

let's see if i can see that from here

771.12

uh i want to select

774.72

sir

776.56

from user

779.519

so i want to do select

781.519

star from

782.88

user

784.079

where

784.839

user whoops

787.68

equals rom

792.399

and so i can see here

795.839

now you can see a bunch of privileges up

798

here so i can see there's selects

799.76

inserts updates deletes

802.16

reload process grant

804.56

so if i go look at

808

grant privilege

812.16

let's do grant proof and let's see if i

816.959

have any others that i want to give

819.92

um

822.8

that'll probably be good for now

825.12

and i can see that i don't have grant

827.279

privileges but

832.959

i can do

842.32

let's see

843.92

um

845.68

and now i'm playing around a little bit

847.12

because i have not done this very uh

848.72

where did my other little there there's

850.8

my other window

852.88

um

854.48

so

855.199

there okay

856.88

i should get that pretty easy so blank

859.279

on that to

861.04

rob at star let's see if that'll work

865.199

um

869.6

i wonder if i can do grant proof

872.72

probably not so i'm just going to cheat

874.399

so i'm going to do update

876.079

user

877.36

set whoops

881.839

grant

883.68

proof equal

885.6

y

886.88

where

888

user equals

904.88

oh

905.76

dang it because rob is a string

909.279

is that where i blew it up earlier

911.519

oh it probably is okay so actually if i

913.76

want to do grant grant to

918.639

let's see if i do that does that make it

923.36

let me try one more time

927.199

okay anyways so now

930.639

if i go back to my select

934.48

now i see that i have grant privileges

935.839

so now

937.199

if i come back in

939.68

here

940.8

oh i guess i wasn't as many anyways i

942.56

was able to sort of cheat

944.16

but now

945.199

i come in here and i want to do grant

948.8

uh

949.6

all privileges on tutorial.star to them

952

let's see if i can get away with that

953.839

nope i can't do it oh because i don't

956

have

957.04

interesting

961.44

let me see

963.279

if i do

965.199

grant all privileges

973.68

whoops

982.079

star 2

985.519

rob at star

992.48

oh

994.079

let's see where i'm at oh i know what it

997.199

is

999.519

oh so it doesn't allow that so now i do

1001.36

have to come in as my super dude

1004.959

so now if i come in here

1007.36

and i grant all privileges

1012.639

and that works and if i want to grant

1014.639

everything to the tutor

1019.44

i can do that now one of the things

1021.04

we've got to remember when we're signing

1022.24

privileges is we need to be able to when

1024.16

you're done you want to flush which is

1025.76

going to update everything crosstalk

1027.439

privileges

1029.199

so now

1031.76

if i go to

1034.559

uh let's see who do i want to be oh i

1036.48

don't want to do let me get back to here

1038.959

so now if i log in as tutor

1043.76

because i granted access to that

1046.72

database

1048.799

i can see tutorial i can use tutorial

1053.2

i'm going to do create table

1055.76

oh this is going to be tough um

1059.039

table one

1061.44

as

1062.559

this thing which is just going to be um

1066.48

name

1068.32

varchar 10

1071.84

let's see if that'll work i'm trying to

1073.44

get the most simple create

1075.36

but i don't have that right now so i'm

1076.64

going to actually deal with that in

1078

another time

1080.24

but i can go in

1082.24

and

1083.36

see something at least within this

1087.2

because i do show tables

1089.52

and there are none in tutorial i'm going

1091.52

to get into this a little bit further

1094.799

next episode

1096.48

right now what i want to do is walk

1098.4

through creating a user granting some

1100.559

privileges deleting a user because what

1102.72

we want to do

1103.919

and this is sort of your homework

1106.64

create a user and probably call him like

1109.6

if you can

1110.88

tutor and then give him a good

1112.96

uh password or go with a very simple one

1115.919

if this is a database that is has no

1118.16

outside access

1120.32

and then create your database

1123.52

which is again that's just going to be

1125.039

create database

1127.76

tutorial

1129.6

and then

1130.799

see it's already created and then you're

1132.24

going to do use tutorial and

1134.84

that is essentially where we're going to

1136.96

be when we pick up on the next episode

1138.799

because what we're going to do is we now

1140.08

have a database so we have sort of a

1143.039

a place to work if you think back to the

1145.12

prior episode where we had the

1146.72

spreadsheet example

1148.4

what we've done at this point is we've

1149.919

opened up our spreadsheet software and

1152.64

we have a blank workbook

1155.76

and you can sort of think of it that way

1157.36

if

1158.48

this workbook

1160.559

back to that prior example

1162.559

i could call this

1165.28

um

1167.039

i'm just going to call it my databases

1172.32

and well actually i'm sorry this would

1174.16

be so these would be tables within it so

1176.08

this would now be

1179.52

if i can if i can drag and drop properly

1182.72

so this would be like the tutorial

1184.4

database

1190.32

which at this point would have actually

1194.72

nothing

1195.919

um so i can take all this and this all

1198.24

does not exist

1200.24

because table one is not really i

1202.559

haven't created it yet so this gave me

1205.2

the creation of table one

1207.679

and we're going to call this um

1211.679

this is going to end up be calling

1215.12

yeah

1216.08

i'm going to call this basic table

1218.48

because that's what we're going to

1219.28

create next time around

1220.88

is we're going to create a table we're

1222.159

going to create some columns

1224.159

and we're going to start doing some very

1225.76

basic stuff within it

1228.4

and we're going to swing back around so

1230.08

we're going to work on our

1231.679

on creating a table first with

1235.039

very simple data we're not going to get

1236.559

too deep into it as we're going to run

1238.4

into a few of these things these first

1239.76

few episodes we're going to

1242.72

as i did even a little bit today we're

1244.159

going to jump ahead and talk about some

1246.24

concepts here and there that

1249.36

it's sort of take our word for it and

1251.6

later we're going to dig deeper into it

1254.96

so at this point

1256.64

if you're set for the next episode then

1258.24

you've got your engine installed

1261.2

you have a user that you're going to be

1262.559

using for this

1264.32

series

1265.52

and you've created a database so we've

1267.52

got a starting point when we start

1269.2

creating tables

1270.64

in that next episode

1273.2

that being said it's time to move on and

1276

get prepared for that next episode

1278.24

so go out there have yourself a great

1279.679

day a great week and we will talk to you

1283.039

next time

1299.52

you