SQL資料庫增刪查改操作

2021-06-27 13:35:50 字數 2071 閱讀 8828

歡迎來到unity學習

、unity培訓

、unity

企業培訓教育專區

,這裡有很多u3d資源

、u3d教程

、我們致力於打造業內unity3d

培訓、學習第一品牌。

今天我們學習了資料庫和資料庫的基本操作

sql是什麼?

structured query language:結構化查詢語言

為何要使用sql?

難道僅僅使用企業管理器操作sql server資料庫?

—應用程式如何與資料庫打交道?

何時使用?

對sql server執行所有的操作都可以

—程式中的增刪改查

建立資料庫和表

1. 建立資料庫:create database 資料庫名

例:create database first

2. 利用資料庫:use 資料庫名

3. 建立資料表:

create table 表名(

id int identity(101,1) primary key,

name varchar(20) not null,

password varchar(10))

例:create table student

(id int identity(101,1) primary key,

name varchar(50) not null,

password varchar(10))

對資料庫的增刪查改

1. 查詢所有資訊:select * from 表名

select * from student

2.刪除資料庫:drop database 資料庫名

drop database first

刪除表:drop table 表名

drop  table student

3.插入一行資料:insert  into 《表名》[(列名)] values(值列表)

inert into student (name,password)valuse('張三','123')或

inert into student valuse('張三','123')

intrt into student (name)valuse('張三')--只插入乙個資料

4.插入多行資料:insert into《表名》(列名)

insert into 《表名》(列名)

select 《列值》union

select 《列值》union 例:

insert into users(name,password)

select '張曉','789' union

select '李文','987' union

select '齊賀','654'

5.當新表不存在時插入多行資料:

select《舊列名》into《新錶名》from《舊表名》

6.當新表已存在時插入多行資料:

insert into《新錶名》(列名)

select《源列名》

from《源表名》

7.更新資料:

update 《表名》set《列名=更新值》

[where《更新條件》]

update student set  name='李薇薇' where id=101

8.刪除資料:

delete from《表名》[where《刪除條件》]

資料庫的增,刪,查,改

資料庫 database 是按照資料結構 來組織 儲存和管理資料的倉庫,它產生於距今六十多年前,隨著資訊科技和市場的發展,特別是二十世紀九十年代以後,資料管理不再僅僅是儲存和管理資料,而轉變成使用者所需要的各種資料管理的方式。資料庫有很多種型別,從最簡單的儲存有各種資料的 到能夠進行海量資料儲存的大...

資料庫學習04 SQL學習 增 刪 查 改

在前面資料庫學習03裡面也學到了資料庫的建立,以及表的建立,還有一些相關操作,接下來我們就可以像表裡面插入資料,03裡面不懂的,在本章節,將會細化。一 增 增 顧名思義,無非就是在表中插入資料,前面也提到了,向表中插入資料的語法為 insert 表名 values 值 第一步 我們先來建立乙個資料庫...

sql的增刪查改

摘要 php用的最多的是mysql資料庫,在php工具箱的mysql管理器中有乙個phpmyadmin,還可以從adminer中 登陸之後先建立資料庫,再建立乙個表結構,橫著的為一條記錄,豎著的為字段。資料庫可以從編輯等地方改資料,一般是通過sql命令語句中通過常用的語句增刪查改。常用的增刪查改語句...