Drop & Create table stament
A simple mysql documentation of the avans software development notes
Drop Statement
Example
Drop table
Removes a table from a database
Drop database
Deletes the whole database
Create statement
Create Database
Create table
syntax
this creates a table with 3 colums Columname is how we want the collum to be called
Example
this creates a table called peopleinfo with five collums which can store information
Create table from other table
syntax
the WHERE statement is NOT needed when creating tables from other tables
Example
Last updated