數(shù)據(jù)庫都是用 圓柱形表示的。

數(shù)據(jù)庫中包含表

表中包含行和列

行又叫記錄record,  列又叫 字段field

 

創(chuàng)建數(shù)據(jù)庫

create database mypipe_l;

選擇數(shù)據(jù)庫

use mypipe_l;

創(chuàng)建表

create table doughnut(
    name VARCHAR(10),
    type VARCHAR(6)
);

網(wǎng)友評(píng)論