MySQL database uses SQL SELECT statement to query data.
You can query data in the database through the mysql> command prompt window, or query data through PHP scripts.
The following is the common SELECT syntax for querying data in MySQL database:
SELECT column_name,column_name
FROM table_name[WHERE Clause][OFFSET M][LIMIT N]
You can use one or more tables in the query statement , use commas (,) to separate tables, and use the WHERE statement to set query conditions.
The SELECT command can read one or more records.
You can use an asterisk (*) to replace other fields, and the SELECT statement will return all field data in the table.
You can use WHERE statement to include any condition.
You can use OFFSET to specify the data offset at which the SELECT statement starts to query. By default the offset is 0.
You can use the LIMIT attribute to set the number of records returned.
Get data through the command prompt
The following example will return all records of the data table runoob_tbl:
[root@localhost runoob]# mysql -u root -pEnter password:
Welcome to the MariaDB monitor. Commands end with ; or g.
Your MariaDB connection id is 2
Server version: 5.5.50-MariaDB MariaDB Server
Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.
Type 'help;' or 'h' for help. Type 'c' to clear the current input statement.
MariaDB [(none)]> use RUNOOBReading table information for completion of table and column names
You can turn off this feature to get a startup quicker with -A
Database changed
MariaDB [RUNOOB]> select * from runoob_tbl
-> ;+-----------+---------------+-- -------------+-----------------+
| runoob_id | runoob_title | runoob_author | submission_date |
+------ -----+---------------+--------------+------------ -----+
| 1 | Learn PHP | John Poul | 2016-11-26 |
| 2 | Learn MySQL | Abdul S | 2016-11-26 |
| 3 | JAVA Tutorial | Sanjay | 2007-05 -06 |
| mysql | cakin24 ------------+------------------+4 rows in set (0.00 sec)
MariaDB [RUNOOB]>
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if (! $conn )
{
die('Could not connect: ' . mysql_error());
}
$sql = 'SELECT runoob_id, runoob_title,
runoob_author, submission_date
FROM runoob_tbl';
mysql_select_db('RUNOOB' );
$retval = mysql_query( $sql, $conn );
if(! $retval )
{
die('Could not get data: ' . mysql_error());
}
while($row = mysql_fetch_array( $retval, MYSQL_ASSOC))
{
echo "Tutorial ID :{$row['runoob_id']}
".
"Title: {$row['runoob_title']}
".
" Author: {$row['runoob_author']}
".
" "Submission Date : {$row['submission_date']}
".
" "--------- ---------------------
";
}
echo "Fetched data successfullyn";
mysql_close($conn);
?>
In the above example, each row of records read is assigned to the variable $row, and then each value is printed out. Note: Remember if you need to use a variable in a string, put the variable in curly braces. In the above example, the second parameter of the PHP mysql_fetch_array() function is MYSQL_ASSOC. When set to this parameter, the query results will return an associative array. You can use the field name as the index of the array. Method 2:
PHP provides another function mysql_fetch_assoc(), which fetches a row from the result set as an associative array. Returns an associative array based on the rows taken from the result set, or false if there are no more rows.
The following example uses the mysql_fetch_assoc() function to output all records of the data table runoob_tbl:
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword' ;
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
{
die('Could not connect: ' . mysql_error());
}
$sql = 'SELECT runoob_id , runoob_title,
runoob_author, submission_date
FROM runoob_tbl';
mysql_select_db('RUNOOB');
$retval = mysql_query( $sql, $conn );
if(! $retval )
{
die('Could not get data: ' . mysql_error());
}
while($row = mysql_fetch_assoc($retval))
{
echo "Tutorial ID :{$row['runoob_id']}
".
" "Title: {$row['runoob_title']}
".
" "Author: {$row['runoob_author']}
".
" "Submission Date : {$row['submission_date']} ".
" "--------------------------------
";
}
echo "Fetched data successfullyn";
mysql_close($conn);
?>
Method 3:
You can also use the constant MYSQL_NUM as the second parameter of the PHP mysql_fetch_array() function to return a numeric array.
The following example uses the MYSQL_NUM parameter to display all records of the data table runoob_tbl:
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if(! $conn )
{
die('Could not connect: ' . mysql_error());
}
$sql = 'SELECT runoob_id, runoob_title,
runoob_author, submission_date
FROM runoob_tbl';
mysql_select_db('RUNOOB');
$retval = mysql_query( $sql, $conn );
if(! $retval )
{
die('Could not get data: ' . mysql_error());
}
while($row = mysql_fetch_array($retval, MYSQL_NUM))
{
echo "Tutorial ID :{$row[0]}
".
"Title: {$row[ 1]}
".
" "Author: {$row[2]}
".
" "Submission Date: {$row[3]}
".
" "---- ----------------------------
";
}
echo "Fetched data successfullyn";
mysql_close($conn) ;
?>
The output results of the above three examples are the same. The output results are as follows:
Memory release
After we execute the SELECT statement, it is a good habit to release the cursor memory. Memory release can be achieved through the PHP function mysql_free_result().
The following example demonstrates the use of this function. This example only adds the statement mysql_free_result($retval); based on the previous example.
$dbhost = 'localhost:3036';
$dbuser = 'root';
$dbpass = 'rootpassword';
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
if (! $conn )
{
die('Could not connect: ' . mysql_error());
}
$sql = 'SELECT runoob_id, runoob_title,
runoob_author, submission_date
FROM runoob_tbl';
mysql_select_db('RUNOOB' );$retval = mysql_query( $sql, $conn );
if(! $retval )
{
die('Could not get data: ' . mysql_error());
}
while($row = mysql_fetch_array($ retval, MYSQL_NUM))
{
echo "Tutorial ID :{$row[0]}
".
"Title: {$row[1]}
".
"Author: {$row [2]}
".
" "Submission Date: {$row[3]}
".
" "-------------------------- ------------
";
}mysql_free_result($retval);echo "Fetched data successfullyn";
mysql_close($conn);
?>

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
