LIKE is a keyword that is used in the WHERE clause. Basically, LIKE allows us to do a search based operation on a pattern rather than specifying exactly what is desired (as in IN) or spell out a range (as in BETWEEN).
The syntax is as follows:
SELECT "column_name"
FROM "table_name"
WHERE "column_name" LIKE {PATTERN}
{PATTERN} often consists of wildcards.
In SQL, there are two wildcards:
% (percent sign) represents zero, one, or more characters.
_ (underscore) represents exactly one character.
More :: Certification Questions on SQL
JavaScript is an interpreted language, not a compiled language. A program such as C++ or Java needs to be compiled before it is run.
The source code is passed through a program called a compiler, which translates it into bytecode that the machine understands and can execute.
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.