SQL建立資料表

2021-10-07 23:23:27 字數 661 閱讀 4343

一、建立資料表

在建立資料表前,使用以下語法指定在哪個資料庫進行操作:

use database_name;
然後建立新資料表:

create table table_name (欄位1 資料型別 (列級別約束條件),

欄位2 資料型別 (列級別約束條件),

....);

例如建立乙個名為student的資料表,包含的字段有id、name、gender:

create table student (id int(10),name varchar(30),gender varchar(30));
二、新增資料到資料表裡

新增一行id為10001,姓名為張三,性別為男的資料到student資料表中:

insert into student values(10001,"張三", "男");
輸入以下語句可以檢視資料表中所有的資料:

select * from student;
三、刪除資料表

刪除student資料表及表裡的資料:

drop table student;

SQL 資料表建立

3.insert into 新增資料 4.update 修改資料 5.delete 刪除資料 結構和約束還在 6.drop 刪除表 軟體環境 oracle 12c 1.create table 建立表 語法格式 create table 方案.表 欄位名1 資料類 字段級別約束條 default 預...

用SQL語言建立資料表

用sql語言建立資料表 1 建立學生表student create table student sno char 8 sname char 20 s char 2 sdept char 20 sage smallint 2 建立課程表course create table course cno ch...

使用SQL語句建立資料表

create database test usetest 使用text庫,作為當前查詢的庫 create table tbclass clsid intprimary keyidentity 1,1 班級編號自增,主鍵,逗號後值為增量 clsname nvarchar 16 unique,唯一性約束...