A. sql 資料庫中所有表中查詢關鍵字
用游標循環以下,可能效率有點低,以下是我寫的一個存儲過程語句供參考
--exec searchkeyword '物理'
Create proc searchkeyword(@keyword varchar(100))
as
begin
declare @tablename varchar(100),@colname varchar(100),@sql nvarchar(2000),@cou int
create table #t
(
tablename varchar(100),
colname varchar(100)
)
declare c1 cursor for
select a.name as TableName,b.name as ColName From sysobjects a
inner join syscolumns b on (a.id=b.id)
where a.xtype='U'
open c1
fetch next from c1 into @tablename,@colname
WHILE @@_STATUS = 0
begin
set @sql='select @count=count(*) from '+@tablename+' where '+@colname+'=@keyword'
begin try
exec sp_executesql @sql, N'@count int out,@keyword varchar(20)', @cou out ,@keyword
end try
begin catch
set @cou=0
end catch
if @cou>0
begin
insert into #t values(@tablename,@colname)
end
fetch next from c1 into @tablename,@colname
end
CLOSE c1
DEALLOCATE c1
select * from #t
end
B. 資料庫中的關鍵字具體指的是什麼
關鍵字是惟一能標識一個記錄的數據項。
在資料庫中一個表或一個文件中可能存儲著很多記錄,為了能惟一地標識一個記錄,必須在一個記錄的各個數據項中,確定出一個或幾個數據項,把它們的集合稱為關鍵字。通常,只需用一個數據項作為關鍵字。但是為了將數據之間的關系連續起來,記錄可以有多個關鍵字。
(2)資料庫用哪個關鍵字查找擴展閱讀:
通過關鍵字可以知道哪些文件和表是有聯系的,可以為有關資料庫操作和數據分析提供方便,例如常見表的合並;還通過關鍵字來測試系統存取效率。關鍵字的速度與資料庫文件的邏輯結構和物理結構有關。
關鍵字的多少與文件是單關鍵字文件還是多關鍵字文件有關。若文件中的一個記錄只有一個惟一標識記錄的主關鍵字,則稱單關鍵字文件;若文件中的記錄除了含有一個主關鍵字外,還含有若干個次關鍵字,則稱為多關鍵字文件。
C. mysql資料庫如何搜索關鍵詞
辦法如下:
select * from table1 where concat(`欄位`,`欄位`,`欄位` ) like '%關鍵字%' union
select * from table2 where concat(`欄位`,`欄位`,`欄位` ) like '%關鍵字%' union
select * from table3 where concat(`欄位`,`欄位`,`欄位` ) like '%關鍵字%' union
select * from table4 where concat(`欄位`,`欄位`,`欄位` ) like '%關鍵字%' union
select * from table5 where concat(`欄位`,`欄位`,`欄位` ) like '%關鍵字%'
前提是查詢出來的欄位個數要一樣,類型要對應好,至於如何得到正確且符合你需要的sql就要在程序類中處理了。