c模糊查詢sql語句怎麼寫c裡SQL模糊查詢

2021-03-07 07:47:05 字數 1338 閱讀 1007

1樓:

假設有表名稱: tb_student

欄位: id, 編號

name 學生姓名

*** 性別

要求:根據文字框(txt_inputname)輸入的值,進行學生名稱的模糊查詢。

偽**:

//獲取文字框的值作為查詢條件

string filtername=txt_inputname.text.trim();

//查詢語句

string sql = string.format( " select id,name,*** from tb_student where name like '%%';",filtername);

2樓:填寫使用者名稱

select * from pwdmanger where 欄位 like '%123%' --你寫的這個沒問題啊,你把表的資料截圖貼上來。

3樓:匿名使用者

sql語句使用 like

4樓:匿名使用者

select * from pwdmanger where [zid] like '%123%' or [name] like '%123%' or [url] like '%123%' or [id] like '%123%' or [pwd] like '%123%' or [mb] like '%123%'

c#裡sql模糊查詢

5樓:匿名使用者

顯然無效bai 舉個例子就明白了du

string sql="select * from xx where name like '%張%'"

現在zhi有string name="張" 那麼sql語句怎麼dao

拼?string sql="select * from xx where name like '%"+name+"%'"

你沒發現回

你少了 單引號答麼?

6樓:匿名使用者

什麼資料庫,怎麼知道無效。

怎樣在c#中實現資料庫資料的模糊查詢

7樓:司馬刀劍

使用sql語句查詢資料,做模糊查詢的方法是在要模糊掉的位置加上一個百分號%

比如:要查詢id號是:83xx58193,只要滿足前面是83,結尾是58193的所有記錄的查詢方法:

select * from table_name where id like '83%58193';

意思就是查詢表名為table_name下的id像 83***58193的所有記錄。

SQL資料庫中,模糊查詢的語句怎麼寫

select from abc like 1 你根本就沒有寫在哪個列裡查呀,肯定列名無效咯。select from abc where like 1 正確的應該是 select from 表名 where 欄位 like 1 c 模糊查詢sql語句怎麼寫?假設有表名稱 tb student 欄位 i...

幫我寫句SQL查詢語句

select 班級一 union select 班級二 union select 班級三 select 班級一 union select 班級二 union select 班級三 沒有表,大概不能使用select命令吧 沒有表無法查詢 想要查詢必須先建立表 對啊,沒有表 就不知道具體的表結構是怎樣的...

在access中怎麼寫sql查詢語句,select查詢出

由於sql語言處理問題的方式是面向記錄 集合 的。解決排名這類問題對於sql來說確實頭疼,分組排名就更不用說了!為了解決排名問題大型資料庫系統為使用者提供了rank rownumber等函式,但是access不支援排名 開窗等這類函式,一般建議用程式設計方式解決,例如vba等。這個問題確實不好回答。...