Jump to content
  • 0

Поиск текста по всей базе данных.


Kypaku
 Share

Question

Здравствуйте!

 Мне нужно организовать поиск текста по всей базе данных. То есть я задаю искомый текст, а в результате появляются строки БД в которых хотя бы в одном столбце содержится искомый текст.

 

Чтобы я мог затем редактировать данные строки и заменить их в базе данных.

 

В гугле нашел много примеров на SQL, но к сожалению не получилось их использовать - возникали ошибки.

На самом деле неважно php или sql.

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

MySQL

 

Вот мой вариант:

<?php$str = "Слово"; $link = mysql_connect('localhost', 'user', 'pass')    or die('Не удалось соединиться: ' . mysql_error());mysql_select_db('db') or die('Не удалось выбрать базу данных');// Выполняем SQL-запрос$query = "SHOW TABLES";$result = mysql_query($query) or die('Запрос не удался: ' . mysql_error());$arrres=array();$rows = array();$sels = array();while ($row = mysql_fetch_row($result)) {	$arrres[] = $row[0];	$rowsnew= array();	$selnewnew = array();	$resultrow = mysql_query("SHOW COLUMNS FROM ".$row[0]);	while ($row2 = mysql_fetch_row($resultrow)) {		$rowsnew[] = $row2[0];		$resultsel = mysql_query("SELECT * FROM ".$row[0]." WHERE ".$row2[0]." REGEXP \".*".$str.".*\" ");		$selnew = array();			while ($row3 = mysql_fetch_row($resultsel)) {			$selnew[] = $row3[0];		}		$selnewnew[] = $selnew;	}	$sels[] = $selnewnew;	$rows[] = $rowsnew;}print_r($arrres);print_r($rows);print_r($sels);// Освобождаем память от результатаmysql_free_result($result);// Закрываем соединениеmysql_close($link); ?>

Вроде работает - то есть выводит номера строк.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy