SQLserver資料庫基礎
Ⅰ sqlserver 2005 資料庫基礎問題,我是新手,求答案,能詳細就詳細點,謝謝!
1:確保你的資料庫是不存在同名的資料庫,請刪除的進口(附加)
2:確保存在的數據文件和日誌文件
Ⅱ 請推薦一本基礎的SQL資料庫的書
《資料庫技術與應用——sql server》我上大學的教課書,感覺挺好的,通俗易懂的。
Ⅲ 初學SQL資料庫新手入門急急急!!!
先建表
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》')
Ⅳ 資料庫基礎知識
1)
select b.name from book as a ,student as b where a.title like '資料庫原
理';
2)
select a.sid form student as a, lend as b,return as c where (b.sid =
a.sid or c.sid = a.sid )and ldate = rdate;
3)
select distinct (t.title)書名,(select(max(a.price) from book as a)價格
from book as t
Ⅳ 請問零基礎學python,mySQL,sqlserver哪個簡單需要高等數學的基礎嗎
都不需要高等數據基礎。
其中python是開發語言。
mySQL是一種關系型開源資料庫系統,使用非常廣泛,使用是免費的。
sqlServer也是一種關系型資料庫系統,是微軟開發的,商業使用需要購買授權。
Ⅵ 一個電腦新手如何學習SQL server資料庫基本操作
基本操作就是增刪改查,先熟悉簡單的增刪改查語句。insert,delete,update,select