初學SQL資料庫新手入門急急急

時間 2021-08-14 22:33:11

1樓:匿名使用者

先建表create table table_name

(列名1 字串型別 約束,

列名2 字串型別 約束,

列名3 字串型別 約束)

字串型別一般為 number()、varchar()、date、int、、、

約束常見的:

主鍵約束primary key,非空約束 not null,唯一約束unique,檢查約束check

插入資料

insert table table_name values(列1數值,列2數值,.....)

例:create table wyb(

times date,

age varchar2(2),

act varchar2(4000),

address varchar2(1000),

mtp varchar2(1000),

song varchar2(1000) )

insert into wyb(times,age,address,act) values(to_date('1997/08/05','yyyy/mm/dd'),1,'洛陽','出生啦')

insert into wyb(times,age,act) values(to_date('2011','yyyy'),13,'參加了全國ibd頂尖街舞大賽,hiphop組進入16強,從而被樂華娛樂發掘成為練習生')

insert into wyb(times,age,act) values(to_date('2014/10/16','yyyy/mm/dd'),17,'組合登陸韓國節目《m!countdown》作為首次放送舞臺,正式開始韓國的宣傳活動')

insert into wyb(times,age,act) values(to_date('2014/10/20','yyyy/mm/dd'),17,'組合首支單曲《falling in love》中韓雙版公開')

insert into wyb(times,age,act,song) values(to_date('2014/10/20','yyyy/mm/dd'),17,'組合首支單曲《falling in love》中韓雙版公開','《falling in love》')

insert into wyb(times,age,act,song) values(to_date('2014/11/7','yyyy/mm/dd'),17,'組合為美國動畫電影《馬達加斯加的企鵝》演唱中文主題曲《celebrate》','《celebrate》')

2樓:匿名使用者

《sqlserver2008完全學習手冊》,是2023年清華大學出版社出版的圖書,作者是郭鄭州。

從資料庫的基礎知識入手,全面介紹sql server 2008資料庫應用知識。

全書內容包括使用

1、sql server 2008管理工具,2、sql server資料庫管理,操作架構、檢視與索引,3、資料查詢和管理,transact-sql程式設計,4、儲存過程,觸發器,

5、sql server 2008的安全機制,備份與恢復資料庫,6、自動化 sql server 2008資料庫,整合服務,7、分析服務和報表服務,

8、使用adonet訪問sql server 2008等內容。

如果學習的是2008版本的資料庫,這本書挺好的。

sql資料庫使用者驗證語句,SQL資料庫使用者驗證語句

sql語句 select from tablename where userid userid and userpwd userpass 要不寫在儲存過程裡 set ansi nulls on set quoted identifier on goalter procedure dbo loginp...

SQL資料庫高手請進,SQL資料庫高手請進

使用學號分組,統計通過和不通過的數量即可 不用管什麼成績了 比如某學號有7門課程,通過3門 不通過4門,那麼就可以知道通過率了 select a,case b when 通過 then 1 else 0 as 通過科目數 count a as 總科目數 case b when 通過 then 1 e...

SQL資料庫有什麼優點,相比SQL資料庫,圖資料庫有何優勢?

sql server的優點眾多,讓其在資料庫領域獨佔鰲頭,成為最受使用者歡迎的資料庫系統,下面就讓我們來了解sql server的優點和缺點。sql server是一個關聯式資料庫管理系統,它最初是由microsoft,sybase和ashton tate三家公司共同開發的於1988 年推出了第一個...