Hook
More breakout videos from this creator.
You don't got no huzz because you don't use SQL. You need SQL in order to create a database so you could communicate with the huzz or even the chuzz. First thing we're gonna do, we're gonna create a table so we can store and keep the huzz data organized. This table we're gonna store ID, the first name, the phone number, and description. We're gonna make ID our primary key. And what that does it stops us from having duplicate IDs and ID column. And we're gonna make the phone number unique so we won't have duplicate phone numbers. When we run this, we create a table for the huzz. But you see we don't got no huzz or no chuzz in the table yet. So if you wanna the chuzz into the database, we gotta use the insert query. When you're putting data in the table, make sure that the data you're putting in corresponds to the data type that you picked for that column. But we can run this and our table's not empty no more. Now, we're gonna try putting the chuzz table. You wanna find all the chuzz. But you're gonna use the where clause and gonna type where description is equal to "Chuzz". That's gonna return chess in the table for you for you specifically.