sql2000 基本刪除,插入,查詢

2021-06-09 04:22:14 字數 421 閱讀 9707

insert into table1 ([name],subject,class) values ('我的名字','英語',3)

select * from table1

insert into table1 (subject,class) values ('英語',3)

update table1 set [name]='' where isnull([name],'')=''

select * from table1 where class=2

select * from table1 where class>=2

select * from table1

delete table1 where class=1

update table1 set class=3 where class  is null

sql 2000 基本框架

我們現在學習的sql 2000 資料庫管理系統.其實我們在平時說的時候,總是喜歡簡化的說,但是在理解的時候如果你還簡化的理解.那麼就理解不了.比如說是我們再學習資料庫.難道是我們再學習那個資料的庫嗎?當然不是.其實我們說的資料庫分為.資料庫,資料庫管理系統,使用者三部分組成.資料庫就是其中資料庫,就...

sql 2000 基本框架

我們現在學習的sql 2000 資料庫管理系統.其實我們在平時說的時候,總是喜歡簡化的說,但是在理解的時候如果你還簡化的理解.那麼就理解不了.比如說是我們再學習資料庫.難道是我們再學習那個資料的庫嗎?當然不是.其實我們說的資料庫分為.資料庫,資料庫管理系統,使用者三部分組成.資料庫就是其中資料庫,就...

sql2000儲存過程

自 http www.cnblogs.com a13971240 archive 2008 10 22 1316747.html create proc getdataset tablelist varchar 200 搜尋表的字段,比如 id,datatime,job 用逗號隔開 tablenam...