insert into yiyuan (keshi) values ('...')
select * from dbo.article
delete from dbo.article where classid='1'
page.response.redirect("~/module/admin/notice.aspx");
datalist資料繫結 用eval函式繫結
以news_data資料庫為例
在查詢分析器裡輸入
select * from dbo.article檢視表article中的所有資料
delete from dbo.article where classid='1'
就實現了,刪除news_data資料庫裡的表article中所有classid為1的所有行的資料
工具》選項》文字編輯器》c#》行號;顯示行號
f9為斷點
big_class表
create database [dzjk_xm]
gouse [dzjk_xm]
gocreate table [big_class] (
[bigclass_id] [int] identity (1, 1) not null ,
[bigclass_name] [varchar] (50) collate chinese_prc_ci_as null ,
[enable] [bit] null ,
[memo] [varchar] (300) collate chinese_prc_ci_as null ,
collate是乙個子句,定義排序
規則,chinese_prc_指針對大陸簡體字unicode的排序規則。
_bin 二進位制排序
_ci(cs) 是否區分大小寫,ci不區分,cs區分
_ai(as) 是否區分重音,ai不區分,as區分
_ki(ks) 是否區分假名型別,ki不區分,ks區分
_wi(ws) 是否區分寬度 wi不區分,ws區分
constraint [pk_big_class] primary key clustered
([bigclass_id]
) on [primary]
) on [primary]
go**all_class表
create table [**all_class] (
[**allclass_id] [int] identity (1, 1) not null ,
[bigclass_id] [int] null ,
[**allclass_name] [varchar] (50) collate chinese_prc_ci_as null ,
[enable] [bit] null ,----是否可用
[memo] [varchar] (300) collate chinese_prc_ci_as null ,
constraint [pk_**all_class] primary key clustered
([**allclass_id]
) on [primary]
) on [primary]
gonews新聞create table [news] (
[news_id] [int] identity (1, 1) not null ,
[class_id] [int] not null ,
[title] [nvarchar] (50) collate chinese_prc_ci_as not null ,
[content] [nvarchar] (2000) collate chinese_prc_ci_as not null ,
[nkey] [nvarchar] (50) collate chinese_prc_ci_as null ,
[datetime] [datetime] not null constraint [df_news_datetime] default (getdate()),
[hits] [int] not null constraint [df_article_hits] default (0),
[imgnews] [bit] not null ,--是否上傳
[titleimg] [nvarchar] (50) collate chinese_prc_ci_as not null ,
[topicid] [int] null , ---路徑名稱
[membername] [nvarchar] (8) collate chinese_prc_ci_as not null ,
constraint [pk_news_class] primary key clustered
([news_id]
) on [primary]
) on [primary]
go以下為插入語句的實現方法
create table [yiyuan] (
[yiyuan_id][int] identity(1,1) not null,
[yiyuan_name][varchar](50)collate chinese_prc_ci_as null,
[enable][bit]null,
[keshi] [varchar] (300) collate chinese_prc_ci_as null ,
[doctor][varchar](20) collate chinese_prc_ci_as null,
constraint [pk_yiyuan] primary key clustered
([yiyuan_id]
) on [primary]
) on [primary]
goinsert into [yiyuan] ([keshi]) values ('內科')
insert into yiyuan (keshi) values ('外科')
以上兩種方法均可以
以news_data資料庫為例
在查詢分析器裡輸入
select * from dbo.article檢視表article中的所有資料
刪除語句
delete from dbo.article where classid='1'
就實現了,刪除news_data資料庫裡的表article中所有classid為1的所有行的資料
vc 連線資料庫 個人總結
第一次接觸ado資料庫,自己的一點經驗,在這裡總結一下,以免後面忘記了,再重新來看。也許文字中有錯誤,請大家能給予指正。本文中使用的資料是access2000.h標頭檔案中定義一下變數 connectionptr m pconn recordsetptr m precset commandptr m...
資料庫總結
從這張表可以看到存在冗餘,西遊記,孫悟空 和 葫蘆娃,火娃 出現兩次,在資料量更大的情況下可能出現更多次。假設用這張表,然後候選鍵為什麼?你分析一下,小朋友的id肯定是候選鍵 候選鍵的概念,請翻閱資料庫教材 之一,就可以了麼。貌似不行,因為動漫電影不由這個決定,那麼動漫人物加上作為候選鍵之一,根據這...
資料庫總結
剛剛結束了short brain 英語學習的專案,趕快利用這段時間把期末考試期間拉下的資料庫的學習趕一下吧。雖然相隔時間不長,但是我已經對資料庫的概念和了解有一些模糊了。於是翻開了以前的相關筆記複習了一下,幫我喚起了部分的記憶。我在資料庫學習的初期參考了vb課本以及 sql入門經典 並且在學習的初期...