1樓:匿名使用者
然後,在查詢按鈕的**裡寫:
string 條件=" name='"+textbox1.text+"' and ....."; //用你的textbox構造起來的sql查詢條件
string sql="select * from 表 where "+ 條件; //查詢的sql語句。
datatable dt = new datatable();
sqlconnection conn = new sqlconnection("資料庫連線字串");
conn.open();
sqldataadapter da = new sqldataadapter(sql, conn); ;
da.fill(dt);
conn.close();
table t=new table();
for (int i = 0; i < dt.rows.count; i++)
placeholder1.controls.add(t);
2樓:
這個bai不可能使用簡du單一個查詢語句來實現zhi這個功能。因為你dao的這個需要基本都
專是比屬
一定邏輯的查詢,實現起來有相當的難度。因為首先要確定有多少張表,每張表中有多少個欄位,然後才能實現某個欄位中的某條記錄包含你所需要的這個特定的值。
3樓:丶水月光影灬
網頁的表,還是資料庫的表
asp.***如何將查詢出資料庫的個欄位內容顯示在一個table表中?
4樓:落月
在你的table的位置放一個placeholder
然後,在查詢按鈕的**裡寫:
string 條件=" name='"+textbox1.text+"' and ....."; //用你的textbox構造起來的sql查詢條件
string sql="select * from 表 where "+ 條件; //查詢的sql語句。
datatable dt = new datatable();
sqlconnection conn = new sqlconnection("資料庫連線字串");
conn.open();
sqldataadapter da = new sqldataadapter(sql, conn); ;
da.fill(dt);
conn.close();
table t=new table();
for (int i = 0; i < dt.rows.count; i++)
placeholder1.controls.add(t);
sql語句 怎麼把從一個表中查出來資料插入到另一個表中
5樓:明月照溝渠
1、假如
則 insert into a(a,b,c) (select a,b,c from b)
2、假如a表不存在
select a,b,c into a from b
3、假如需要跨資料庫
insert into adb.[dbo].a(a,b,c) (select a,b,c from bdb.[dbo].b)
擴充套件資料:
sql匯入語句
1、如果要匯出資料到已經生成結構(即現存的)foxpro表中,可以直接用下面的sql語句
insert into openrowset('msdasql',
'driver=microsoft visual foxpro driver;sourcetype=dbf;sourcedb=c:\',
'select * from [aa.dbf]')
select * from 表
說明:sourcedb=c:\ 指定foxpro表所在的資料夾
aa.dbf 指定foxpro表的檔名.
2、匯出到excel
exec master..xp_cmdshell 'bcp settledb.dbo.
shanghu out c:\temp1.xls -c -q -s"g***data/g***data" -u"sa" -p""'
3、/** 匯入文字檔案
exec master..xp_cmdshell 'bcp dbname..tablename in c:
\dt.txt -c -sservername -usa -ppassword'
6樓:鬱筱羽
標準sql語句
bai格式:
insert
into 表名(
du欄位zhi
名)select 欄位名
from 表面
例子:dao將內查詢出的s表中容sno,j表中jno,p表中pno插入spj表中
insert
into spj(sno,jno,pno)select sno,jno,pno
from s,j,p
7樓:sql的藝術
insert into table2 (col1,col2,col3)
select col1,col2,col3 from table1
記得插入表的列數要與查詢結果列數一致,並且資料格式也需一致
8樓:day忘不掉的痛
方法如下:
insert into 表2(欄位名1,欄位名2,.....)select 欄位1,欄位2,...
from 表1
where ...
其中欄位型別必須完全符合。
9樓:育知同創教育
使用insert into 目標表(欄位列表) select 欄位列表 from 原始表
即可實現你所說的功能。
10樓:匿名使用者
你要查什麼資料據?算了,我這是巢狀語句,你看著往裡面換欄位就可以了
insert into 表(select 條件 from 表)
11樓:
很簡單 就是一bai個du
inert into table(col1,col2,…)select col1,col2,… 語句例如:insert into a(id,name) select id,name from emp;
表示zhi從emp表中查dao
詢出來的
id,name值專 插入到屬a表的id,name中
12樓:尹巧駿
(1).select * into desttbl from srctbl
(2).insert into desttbl(fld1, fld2) select fld1, 5 from srctbl
以上兩句都是將 srctbl 的資料插入到 desttbl,但兩句又有區別的:
第一句(select into from)要求目內標表(desttbl)不存在,因容為在插入時會自動建立。
第二句(insert into select from)要求目標表(desttbl)存在,由於目標表已經存在,所以我們除了插入源表(srctbl)的欄位外,還可以插入常量,如例中的:5。
13樓:匿名使用者
insert into table_dest(column1, column2...)select column1, column2...
from table_source
where ....
14樓:匿名使用者
insert into t1 value (select * from t2);
15樓:楊春三月
insert into users1(id,name,age) select users.user_id,users.user_name,users.
user_age from users ;
親測試可用!
內!容!
sql資料庫,如何查詢資料庫內含有某一列(某欄位,如name)的所有表
16樓:情感分析
sql資料bai庫,查詢包含列(du
欄位,如名稱)的數zhi據庫中的所有表的步驟dao如下:需要準備的版材料是:權計算機,sql finder。
1,首先,開啟sql查詢器並連線到相應的資料連線,例如測試庫。
2,單擊「查詢」按鈕並鍵入:select table_name來自information_schema.columns,其中table_schema =「test」和column_name =「name」;。
3,單擊「執行」按鈕,將查詢符合條件的表名稱。
4,將查詢調整為:選擇'store'作為table_name,`name`來自商店,其中`name` =「a」union all選擇'stu'作為table_name,`name`來自stu where`name` =「a」union所有選擇'test'作為table_name,`name`來測試`name` =「a」,單擊「執行」按鈕查詢名稱為'a'的表的名稱。
17樓:
應該是抄
不需要儲存過程的。下襲面通過bai查詢欄位名為姓名du為例。
1.select object_name(id) from syscolumns where id in(
select id from sysobjects where type='u')
and name='姓名'
2.第二個問zhi題更簡單了dao
select object_name(id) from syscolumns where id in(
select id from sysobjects where type='u')
and name like '%型別%'
有問題再追問吧。
18樓:匿名使用者
詳細方法抄和語句可以參考我的博襲客:
裡面的第一篇
bai:du
標題是:1、給定字串查詢
zhi表。
祝你成dao功!
在oracle資料庫中,怎樣查詢出只有欄位的表的重複資料
方法一 可以通過group by 進行分組。sql select username,count username from tablename grop by username 解釋 以上sql就是通過分組函式讀版取出tablename表中username的值和每個不 權同值的統計個數。方法二 可以...
sql如何查詢空值的欄位,sql資料庫查詢中,空值查詢條件怎麼寫?
sql查詢空值的欄位寫法 select a.欄位 from student a where a.欄位 like student為表名 查詢類似空值的寫法 1 查詢名稱有退格鍵 select from t bd item info where charindex char 8 item name 0 ...
如何將嫻SQL指令碼匯入資料庫
一 備份資料庫 1 選擇某一個資料庫,右鍵依次選擇 任務 生成指令碼 2 選擇要編寫指令碼的資料庫物件,注意此處可以選擇特定的資料庫物件,我們可以選擇我們需要備份的資料表。3 在當前頁面下面第一步選擇高階選項,然後再選擇輸出的sql指令碼的儲存位置。4 高階選項中最重要的一步就是在 要編寫的指令碼的...