資料庫基本語句

2021-05-17 14:37:55 字數 782 閱讀 2679

資料庫很久沒用,忘的差不多了,練習一下。

環境:mysql

表1表名:test1

屬性:id ,name,bookid

表二表名:book

屬性:id,name

1.建立資料庫

create database study1;

2.建立表

create table test1

(id int(11) not null auto_increment,

name varchar(25) not null default '',

bookid varchar(100), 

primary key(id)

);用資料庫工具給每個表都新增了若干條記錄,再手動新增

3.插入資料

insert into book values

(6,'ruby'),

(7,'perl')

; 4.更改資料

update book

set name='c++'

where id=6

5.刪除一條記錄

delete from book

where name='perl'

6---------------------------

--只言片語

select * from test1,book

where test1.bookid=book.id;

首先對兩張表做笛卡爾乘積,然後從新錶中選出符合條件的選項

未完待續。。。。。。。。

資料庫基本語句

ddl 資料庫或者表的結構 建立 create database table dbname tablename 修改 alter table tablename add modify change drop 列名 型別 約束條件 刪除 drop database table dbname table...

MYSQL資料庫基本語句

sqlite3支援的型別 整數,文字,浮點,二進位制 sqlite3 test.sqlite test.sqlite是資料庫的名字 table 檢視資料庫中是否有表 建立表 no學號 整型 主鍵 自動增長的 不能為空 name姓名 文字 不能為空 age年齡 整型 create table stud...

資料庫 基本語句1

前言 適用於sql server2012 1 開啟sql server 2012 2 新建資料庫 新建表 3 利用基本語句插入資料等操作 3.1 create語句 建立乙個新錶 create table student 3.2 insert語句 插入資料 insert into student 屬性...