SQL 表的相關操作 1

2021-09-27 04:24:20 字數 880 閱讀 6793

需要運算元據庫中的表時,需要先使用該資料庫

use test;
1. 檢視表結構

desc 表名;
2.建立表

create table table_name(

field1 datatype,

field2 datatype,

field3 datatype,

);

【注】可以使用 comment 增加字段說明

例:

create table table_test(

id int,

name varchar(20) comment '姓名',

password varchar(50) comment '密碼',

age int,

*** varchar(1),

birthday timestamp,

amout decimal(13,2),

resume text

);

3. 刪除表

drop [temporary] table [if exists] tb1_name [, tb1_name]...
-- 刪除 table_test 表

drop table table_test;

-- 如果存在 table_test 表,則刪除 table_test 表

drop table if exists table_test;

sql裡面建表及相關操作

1 建立一張表 create table tb bookinfo id int 11 not null,barcode varchar 10 bookname varchar 10 typeid int 10 unsigned,author varchar 30 isbn varchar 20 pr...

表的相關操作

1.建立表 1 用create table 命令建立表 語法 create table tabl name column name as computed column expression n on textimage on 例子 開啟cust資料庫,建立乙個表,該錶包含了學生的有關資訊,即有學號...

順序表的相關操作

include include include struct arr void init arr struct arr parr,int length bool insert arr struct arr parr,int pos,int pval bool delete arr struct ar...