SQL Sever資料庫的學習之 資料的增加

2021-07-31 10:26:21 字數 715 閱讀 9516

延續前兩天的學習,先說前面利用指令碼建立資料庫,**應當牢記,多加練習。

資料庫的建立以及資料表的建立都是最基礎的東西,應該牢記於心。

今日學習資料表中資料的增加----insert

create table classinfo

cid int not null primary key identity(1,1),

ctitle nvarchar 

--為了驗證實際效果,首先檢視資料表中列的情況

select * from classinfo

--在classinfo資料表中插入資料

insert  classinfo(ctitle)

values('12')

--實際效果應該在ctitle這個列中插入了12這個資料,cid中的資料是系統所給

--為了驗證其他資料的插入,此處再建立乙個資料表

create table studentinfo

sid int not null primary key identity(1,1),

sname nvarchar(10) not null,

sgender bit default(0),

sphone char(11)

insert studentinfo(sname,sgender,sphone)

values('李四',0,'12345678'),('王五',0,'123455678')

SQL SEVER資料庫的還原

use master restore database 資料庫 名 如 leading from disk 資料庫備份檔案路徑 如 c program files microsoft sql server data leadingdebug.bak with move 資料庫檔名 如 leading...

SQLSEVER系統資料庫表

master select from msreplication options select from spt fallback db select from spt fallback dev select from spt fallback usg select from spt monitor...

C 連線SQL Sever資料庫

c 連線sql sever用到的是sqlconnection連線物件,程式 如下 using system.data using system.data.sqlclient string strconnection user id sa password strconnection initail ...