SQL basics
SQL Basics
- when using SQL, begin with
select
orSELECT
with the end;
(semi-colon).
example:
1 | select name, no |
- basic sentence to execute
SQL
(This sentence is the same as in all RDBMS.)
1 | SELECT columns... |
- between: in the range
if the number is more than 15, less than 24,
write like the following:
1 | select ~~ |
in/not in: in = including, not in = not including
like: when the specific string is included in data