-
Notifications
You must be signed in to change notification settings - Fork 0
MySQL Intro
POGGERSLMAO edited this page Sep 4, 2019
·
2 revisions
- MySQL
- MariaDB
Ligger på port 3306 som standard
Pratar med servern. Servern skickar tillbaka till klienten
- mysql klient
- webbserver, phpscript
- program
För att skapa tables
create table tweet (id int unsigned auto_increment, body varchar(140) not null, primary key(id)) engine=innodb; alter table tweet add created_At timestamp NULL, add update_at timestamp NULL;