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

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

表中包含行和列

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

 

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

create database mypipe_l;

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

use mypipe_l;

創(chuàng)建表

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

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