Dear readers of our blog, we'd like to recommend you to visit the main page of our website, where you can learn about our product SQLS*Plus and its advantages.
 
SQLS*Plus - best SQL Server command line reporting and automation tool! SQLS*Plus is several orders of magnitude better than SQL Server sqlcmd and osql command line tools.
 

REQUEST COMPLIMENTARY SQLS*PLUS LICENCE

Enteros UpBeat offers a patented database performance management SaaS platform. It proactively identifies root causes of complex revenue-impacting database performance issues across a growing number of RDBMS, NoSQL, and deep/machine learning database platforms. We support Oracle, SQL Server, IBM DB2, MongoDB, Casandra, MySQL, Amazon Aurora, and other database systems.

MySQL SELECT statement

28 August 2020

MySQL SELECT statement

MySQL statement SELECT is used to extract records from one or more tables to MySQL.

Simple syntax for SELECT statement in MySQL

SELECT expressions
FROM tables
[WHERE conditions];

The full syntax for the SELECT statement in MySQL

SELECT [ ALL | DISTINCT | DISTINCTROW ]
[ HIGH_PRIORITY ]
[ STRAIGHT_JOIN ]
[ SQL_SMALL_RESULT | SQL_BIG_RESULT ] [ SQL_BUFFER_RESULT ].
[ SQL_CACHE | SQL_NO_CACHE ]
[ SQL_CALC_FOUND_ROWS ]
expressions
FROM tables
[WHERE conditions]
[GROUP BY]
[HAVING condition]
[ORDER BY expression [ ASC | DESC ]].
[LIMIT [offset_value] number_rows | LIMIT number_rows OFFSET offset_value].
[PROCEDURE procedure_name]
[INTO [ OUTFILE 'file_name' options
| DUMPFILE 'file_name'
| @variable1, @variable2, ... @variable_n].
[FOR UPDATE | LOCK IN SHARE MODE];

Parameters and arguments of the statement

  • ALL is optional. Returns all matching strings
  • DISTINCT is optional. Removes duplicates from the result set. Learn more about DISTINCT.
  • DISTINCTROW is optional. Synonym for DISTINCT. Removes duplicates from the results set.
  • HIGH_PRIORITY – optional. It tells MySQL that it starts SELECT before any UPDATE operators waiting for the same resource. It can be used with MyISAM, MEMORY, and MERGE tables that use table-level locks.
  • STRAIGHT_JOIN is optional. It tells MySQL to connect the tables in the order they are listed in the FROM sentence.
  • SQL_SMALL_RESULT is optional. It uses fast temporary tables to store results (used with DISTINCT and GROUP BY).
  • SQL_BIG_RESULT is optional. Prefers sorting rather than a temporary table to store results (used with DISTINCT and GROUP BY).
  • SQL_BUFFER_RESULT is optional. Uses temporary tables to store results (cannot be used with subqueries).
  • SQL_CACHE is optional. Saves results in a query cache.
  • SQL_NO_CACHE is optional. It does not save results in the query cache.
  • SQL_CALC_FOUND_ROWS is optional. Calculates how many records are in the result set (without taking into account the LIMIT attribute), which can then be obtained with FOUND_ROWS.
  • expressions – The columns or calculations that you want to get. Use * if you want to select all columns.
  • tables – the tables from which you want to get the records. There must be at least one table listed in the FROM sentence.
  • WHERE conditions are optional. The conditions that must be met for the selected records.
  • GROUP BY – optional. It collects data by several records and groups results by one or several columns. Learn more about GROUP BY.
  • HAVING condition is optional. It is used in combination with GROUP BY to limit groups of returned rows to only those whose TRUE condition. Read more about HAVING.
  • ORDER BY is optional. It is used to sort the entries in your result set. Learn more about ORDER BY.
  • LIMIT is optional. If LIMIT is specified, it controls the maximum number of records to be retrieved. The maximum number of records specified by number_rows will be returned in the resulting set. The first line returned by LIMIT will be determined by the value offset_value.
  • PROCEDURE is optional. If specified, it is the name of the procedure which should process the data in the resulting set.
  • INTO is optional. If specified, this allows you to write the resulting set to a file or variable.
MeaningExplanation
INTO OUTFILE
‘filename’ options
“Writes the resulting set to a file named filename on the server host. For parameters you can specify:
FIELDS ESCAPED BY ‘character’
FIELDS TERMINATED BY ‘character’ [ OPTIONALLY ENCLOSED BY ‘character’ ]
LINES TERMINATED BY ‘character’
where a character is a character displayed as ESCAPE, ENCLOSED or TERMINATED. For example:
SELECT supplier_id, supplier_name
FROM suppliers
INTO OUTFILE ‘results.txt’
FIELDS TERMINATED BY ‘,’ OPTIONALLY ENCLOSED BY ””
LINES TERMINATED BY ‘\n’;”
INTO DUMPFILE
‘filename’
Writes one line of the result set to a file named filename on the server host. This method does not interrupt a column, break a line, or process a transition.
INTO @variable1,
@variable2,
… @variable_n
Writes a set of results in one or more variables as specified in the @ v parameters

 

  • FOR UPDATE – optional. Records affected by the query are blocked until the transaction is completed.
  • LOCK IN SHARE MODE – optional. Records affected by the query may be used by other transactions, but cannot be updated or deleted by these and other transactions.

SELECTION OF ALL FIELDS FROM ONE TABLE

Let’s see how to use MySQL statement SELECT to select all fields from a table.

SELECT *
FROM order_details
WHERE quantity >= 100
ORDER BY DESC;

In this MySQL SELECT example, we used * to indicate that we want to select all fields from the order_details table where the number is greater than or equal to 100. The resulting set is sorted by quantity in descending order.

SELECTION OF INDIVIDUAL FIELDS FROM THE SAME TABLE

You can also use MySQL statement SELECT to select individual fields from a table.
For example:

SELECT order_id, quantity, unit_price
FROM order_details
WHERE quantity < 300
ORDER BY quantity ASC, unit_price DESC;

In this MySQL example, SELECT returns only order_id, quantity, and unit_price fields from the order_details table where the number is less than 300. The results are sorted by quantity in ascending order and then unit_price in descending order.

SELECTION OF FIELDS FROM SEVERAL TABLES

You can also use MySQL statement SELECT to extract fields from multiple tables.

SELECT order_details.order_id, customers.customer_name
FROM customers
INNER JOIN order_details
ON customers.customer_id = order_details.customer_id
ORDER BY order_details.order_id;

In this MySQL example, SELECT connects two tables together to produce a result set that displays the order_id and customer_name fields where the customer_id value matches both the order_details and the order_details table. The results are sorted by the order_details.order_id the field in ascending order.

Write to file

You can also use MySQL statement SELECT to write a set of results to a file.
For example:

SELECT order_id, quantity, unit_price
FROM order_details
WHERE quantity < 300
ORDER BY quantity
INTO OUTFILE 'result.txt'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"
LINES TERMINATED BY '\n';

In this MySQL example, SELECT returns only order_id, quantity, and unit_price fields from the order_details table where the quantity is less than 300. The results are sorted by quantity in ascending order and written to a file named result.txt.

Learning MySQL – SELECT Statements

 
Tags: , ,

MORE NEWS

 

Preamble​​NoSql is not a replacement for SQL databases but is a valid alternative for many situations where standard SQL is not the best approach for...

Preamble​​MongoDB Conditional operators specify a condition to which the value of the document field shall correspond.Comparison Query Operators $eq...

5 Database management trends impacting database administrationIn the realm of database management systems, moreover half (52%) of your competitors feel...

The data type is defined as the type of data that any column or variable can store in MS SQL Server. What is the data type? When you create any table or...

Preamble​​MS SQL Server is a client-server architecture. MS SQL Server process starts with the client application sending a query.SQL Server accepts,...

First the basics: what is the master/slave?One database server (“master”) responds and can do anything. A lot of other database servers store copies of all...

Preamble​​Atom Hopper (based on Apache Abdera) for those who may not know is an open-source project sponsored by Rackspace. Today we will figure out how to...

Preamble​​MongoDB recently introduced its new aggregation structure. This structure provides a simpler solution for calculating aggregated values rather...

FlexibilityOne of the most advertised features of MongoDB is its flexibility.  Flexibility, however, is a double-edged sword. More flexibility means more...

Preamble​​SQLShell is a cross-platform command-line tool for SQL, similar to psql for PostgreSQL or MySQL command-line tool for MySQL.Why use it?If you...

Preamble​​Writing an application on top of the framework on top of the driver on top of the database is a bit like a game on the phone: you say “insert...

Preamble​​Oracle Coherence is a distributed cache that is functionally comparable with Memcached. In addition to the basic function of the API cache, it...

Preamble​​IBM pureXML, a proprietary XML database built on a relational mechanism (designed for puns) that offers both relational ( SQL / XML ) and...

  What is PostgreSQL array? In PostgreSQL we can define a column as an array of valid data types. The data type can be built-in, custom or enumerated....

Preamble​​If you are a Linux sysadmin or developer, there comes a time when you need to manage an Oracle database that can work in your environment.In this...

Preamble​​Starting with Microsoft SQL Server 2008, by default, the group of local administrators is no longer added to SQL Server administrators during the...