Know-Legal Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. MySQL Full-Text Search - MySQL Tutorial

    www.mysqltutorial.org/mysql-full-text-search

    MySQL full-text search is an efficient way to perform complex searches within the text data stored in the database. The MySQL full-text search allows you to search natural language text rather than matching patterns. It goes beyond the traditional LIKE operator and regular expression searches.

  3. MySQL MATCH AGAINST - MySQL Tutorial

    www.mysqltutorial.org/mysql-full-text-search/mysql-match-against

    MySQL provides the MATCH() and AGAINST() functions to perform full-text searches: The MATCH() function accepts a comma-separated list of column names to be searched. The AGAINST() function takes a string to search for and an optional modifier that indicates the type of search.

  4. MySQL Full-Text Index - MySQL Tutorial

    www.mysqltutorial.org/mysql-full-text-search/mysql-full-text-index

    Introduction to the MySQL full-text index. MySQL full-text index is a kind of index that allows you to perform efficient text searches. The full-text index has the type of FULLTEXT. MySQL supports full-text indexes for InnoDB or MyISAM tables with CHAR, VARCHAR, and TEXT columns.

  5. MySQL Natural Language Full-Text Searches - MySQL Tutorial

    www.mysqltutorial.org/mysql-full-text-search/mysql-natural-language-full-text...

    In natural language full-text searches, MySQL looks for documents relevant to the free-text natural human language query. MySQL represents the relevance as a positive floating-point number, where a relevance of zero indicates no similarity.

  6. Optimizing MySQL Full-Text Index Performance - MySQL Tutorial

    www.mysqltutorial.org/mysql-full-text-search/mysql-full-text-index-performance

    Create a full-text index on the columns properly and tune configuration variables to enhance the performance of the full-text searches. Form the full-text search queries that effectively use the full-text index to improve the search performance.

  7. MySQL Boolean Full-Text Searches - MySQL Tutorial

    www.mysqltutorial.org/mysql-full-text-search/mysql-boolean-full-text-searches

    MySQL allows you to perform a full-text search based on highly complex queries in Boolean mode, leveraging Boolean operators. This is why the full-text search in Boolean mode is best suited for experienced users.

  8. MySQL Query Expansion - MySQL Tutorial

    www.mysqltutorial.org/mysql-full-text-search/mysql-query-expansion

    To help the users find information based on these too-short keywords, MySQL full-text search engine introduces a concept called query expansion. The query expansion is used to widen the search result of the full-text searches based on automatic relevance feedback (or blind query expansion).

  9. MySQL ngram Full-Text Parser - MySQL Tutorial

    www.mysqltutorial.org/mysql-full-text-search/mysql-ngram-full-text-parser

    MySQL supports ngram full-text parser for both InnoDB and MyISAM storage engines. By definition, an ngram is a contiguous sequence of characters from a text sequence. The primary function of the ngram full-text parser is to tokenize a text sequence into contiguous n-character sequences.

  10. Advanced MySQL - MySQL Tutorial

    www.mysqltutorial.org/advanced-mysql

    This section covers the advanced MySQL concepts including triggers, views, indexes, stored procedures, full-text searches, and administration.

  11. Whether you’re a developer or a database enthusiast, our tutorials are designed to make learning MySQL a breeze. Our tutorials are packed with clear explanations and practical examples to help you find everything you need to become proficient in MySQL.

  12. MySQL Cheat Sheet - MySQL Tutorial

    www.mysqltutorial.org/mysql-cheat-sheet

    MySQL cheat sheet provides you with the on-page that contains the most commonly used statements that help you practice with MySQL more effectively.

  13. How to Back Up and Restore a Database in MySQL - MySQL Tutorial

    www.mysqltutorial.org/mysql-administration/mysql-backup-a-database

    To back up a database on the MySQL server, you use the mysqldump program that comes by default with the MySQL client installation. To restore a backup created by the mysqldump program, you use the mysql command-line program. We’ll demonstrate how to back up and restore a database on a MySQL server.

  14. MySQL Sample Database - MySQL Tutorial

    www.mysqltutorial.org/getting-started-with-mysql/mysql-sample

    It contains typical business data, including information about customers, products, sales orders, sales order line items, and more. We’ll use this sample database in our MySQL tutorials to demonstrate a wide range of MySQL features, from simple queries to complex stored procedures.

  15. MySQL REPLACE String Function: Find & Replace Text - MySQL...

    www.mysqltutorial.org/mysql-string-functions/mysql-replace-function

    MySQL provides you with a useful string function called REPLACE that allows you to replace a string in a column of a table by a new string. The syntax of the REPLACE function is as follows: REPLACE ( str ,old_string,new_string); Code language: SQL (Structured Query Language) ( sql )

  16. MySQL Regular Expressions

    www.mysqltutorial.org/mysql-regular-expressions

    It is a powerful tool that gives you a concise and flexible way to identify text strings, such as characters and words, based on patterns. For example, you can use regular expressions to search for emails, IP addresses, phone numbers, social security numbers, or anything with a specific pattern.

  17. MySQL TEXT Data Type - MySQL Tutorial

    www.mysqltutorial.org/mysql-basics/mysql-text

    This tutorial shows you how to use various MySQL TEXT data type such as TINYTEXT, TEXT, MEDIUMTEXT, and LONGTEXT to store text data.

  18. MySQL SHOW TABLES: List Tables In a MySQL Database - MySQL...

    www.mysqltutorial.org/mysql-administration/mysql-show-tables

    Use the SHOW TABLE statement to list all tables in a database. Use the SHOW FULL TABLE statement to return an additional column that indicates the object is a view or table. Use the SHOW TABLE FROM statement to list tables in a database. Use the SHOW TABLE WHERE statement or SHOW TABLE LIKE statement to filter the tables in a database.

  19. MySQL INSTR() Function - MySQL Tutorial

    www.mysqltutorial.org/mysql-string-functions/mysql-instr

    Sometimes, you want to locate a substring in a string or to check if a substring exists in a string. In this case, you can use a string built-in function called INSTR. The INSTR function returns the position of the first occurrence of a substring in a string.

  20. MySQL LOCATE() Function - MySQL Tutorial

    www.mysqltutorial.org/mysql-string-functions/mysql-locate-function

    The LOCATE() function returns the position of a substring within a given string. The LOCATE() function has the following syntax: LOCATE(substring, string, position) Code language: SQL (Structured Query Language) (sql) In this syntax:

  21. MySQL LIKE - MySQL Tutorial

    www.mysqltutorial.org/mysql-basics/mysql-like

    Summary: in this tutorial, you will learn how to use the MySQL LIKE operator to query data based on a specified pattern. Introduction to MySQL LIKE operator. The LIKE operator is a logical operator that tests whether a string contains a specified pattern or not. Here’s the syntax of the LIKE operator:

  22. MySQL SHOW DATABASES: List All Databases in MySQL - MySQL...

    www.mysqltutorial.org/mysql-administration/mysql-show-databases

    In this tutorial, you will learn to list databases in the MySQL database server using the MySQL SHOW DATABASES command.

  23. MySQL FIND_IN_SET() Function with Practical Examples - MySQL...

    www.mysqltutorial.org/mysql-string-functions/mysql-find_in_set

    MySQL provides a built-in string function called FIND_IN_SET() that allows you to find the position of a string within a comma-separated list of strings. The following illustrates the syntax of the FIND_IN_SET function:

  24. MySQL MyISAM Storage Engine - MySQL Tutorial

    www.mysqltutorial.org/mysql-administration/mysql-myisam

    Use the MyISAM storage engine for read-heavy workloads and applications that require full-text search capabilities. MyISAM storage engine doesn’t support some important features such as transactions and foreign keys, which are essential for data integrity in many applications.