The MYSQL BETWEEN condition specifies how to retrieve values from an expression within a specific range.
It is used with SELECT, INSERT, UPDATE and DELETE statement.
Syntax:
select * from tablename where expression BETWEEN value1 AND value2;
Select Statement:
select * from forum;
0 Comments