JSP SQL語句大全

2021-06-21 22:32:56 字數 1346 閱讀 8476

jsp sql語句大全

這裡用例子來說明,簡單明瞭。

首先,插入

sql:

// insert intoinformation(name,***,phone,qq)values('"+name+"','"+***+"','"+phone+"','"+qq+"')

jsp中資料庫執行:

// executeupdate("insert intoinformation(name,***,phone,qq)values('"+name+"','"+***+"','"+phone+"','"+qq+"')");

其次,查詢

查詢分兩種:一種是模糊查詢,就是不用輸入很精確的條件,就可得到相關的很多資訊。比如你輸入你乙個姓,「楊」,就可以查詢出所有姓楊的人。另一種是精確查詢,需要輸入與你要得到的資訊一樣的條件,才能得到。

模糊查詢:

sql:

// select * from information where name like '%"+name+"%'

jsp中資料庫執行:

// executequery("select * from information where name like'%"+name+"%'");

精確查詢:

sql:

// select * from information where name='"+name+"'

jsp中資料庫執行:

// executequery("select * from information wherename='"+name+"'");

再次,更新

sql:

// update information setname='"+name+"',***='"+***+"',phone='"+phone+"',qq='"+qq+"' wherename='"+name+"'

jsp中資料庫執行:

// executeupdate("update information setname='"+name+"',***='"+***+"',phone='"+phone+"',qq='"+qq+"' wherename='"+name+"'");

最後,刪除

sql:

// delete from information where id="+id+"

jsp中資料庫執行:

// executeupdate("delete from information where id="+id+"");

特別要注意的是,delete語句中條件的格式與其他語句不同,=後沒有單引號。

jsp中資料庫執行語句中的executeupdate和executequery和資料庫的連線有關,可以檢視相關資料。

JSP SQL新聞發布系統

1.引言 5 1.1 開發意義 5 1.2 課題意義 6 2.專案概述 6 2.1 可行性研究 6 2.1.1 經濟可行性 6 2.1.2 技術可行性 6 2.1.3 執行可行性 6 2.1.4 時間可行性 7 2.1.5 法律可行性 7 3.需求分析 8 3.1 功能需求 8 3.2 效能需求 9...

《SQL語句大全》

語 句 功 能 資料操作 select 從資料庫表中檢索資料行和列 insert 向資料庫表新增新資料行 delete 從資料庫表中刪除資料行 update 更新資料庫表中的資料 資料定義 create table 建立乙個資料庫表 drop table 從資料庫中刪除表 alter table 修...

SQL語句大全

建表 create table tab1 id counter,name string,age integer,date datetime 技巧 自增字段用 counter 宣告.欄位名為關鍵字的字段用方括號括起來,數字作為欄位名也可行.建立索引 下面的語句在tab1的date列上建立可重複索引 c...