Search
 
SCRIPT & CODE EXAMPLE
 

SQL

cheatsheet for sql

Guys, are you looking for SQL cheatsheet, in pdf format :)
 -> https://buggyprogrammer.com/sql-cheatsheet/
Comment

SQL CHEATSHEET

BEST PDF SQL CHEATSHEET please upvote :')                                                                                      '
https://learnsql.com/blog/sql-basics-cheat-sheet/sql-basics-cheat-sheet-letter.pdf
Comment

sql cheat sheet

# Finding Data Queries

# SELECT: used to select data from a database
SELECT * FROM table_name;

# DISTINCT: filters away duplicate values and returns rows of specified column
SELECT DISTINCT column_name;

# WHERE: used to filter records/rows
SELECT column1, column2 FROM table_name WHERE condition;
SELECT * FROM table_name WHERE condition1 AND condition2;
SELECT * FROM table_name WHERE condition1 OR condition2;
SELECT * FROM table_name WHERE NOT condition;
SELECT * FROM table_name WHERE condition1 AND (condition2 OR condition3);
SELECT * FROM table_name WHERE EXISTS (SELECT column_name FROM table_name WHERE condition);

# ORDER BY: used to sort the result-set in ascending or descending order
SELECT * FROM table_name ORDER BY column;
SELECT * FROM table_name ORDER BY column DESC;
SELECT * FROM table_name ORDER BY column1 ASC, column2 DESC;
SELECT TOP: used to specify the number of records to return from top of table
SELECT TOP number columns_names FROM table_name WHERE condition;
SELECT TOP percent columns_names FROM table_name WHERE condition;

# Not all database systems support SELECT TOP. The MySQL equivalent is the LIMIT clause
SELECT column_names FROM table_name LIMIT offset, count;

# LIKE: operator used in a WHERE clause to search for a specific pattern in a column
# % (percent sign) is a wildcard character that represents zero, one, or multiple characters
# _ (underscore) is a wildcard character that represents a single character
SELECT column_names FROM table_name WHERE column_name LIKE pattern;

LIKE ‘a%’ # (find any values that start with “a”)
LIKE ‘%a’ # (find any values that end with “a”)
LIKE ‘%or%’ # (find any values that have “or” in any position)
LIKE ‘_r%’ # (find any values that have “r” in the second position)
LIKE ‘a_%_%’ # (find any values that start with “a” and are at least 3 characters in length)
LIKE ‘[a-c]%’ # (find any values starting with “a”, “b”, or “c”

# See more in the source link
Comment

sql cheat sheet

Comment

PREVIOUS NEXT
Code Example
Sql :: mysql row_number() example 
Sql :: postgres set column equal to another 
Sql :: set id count mysql 
Sql :: sql delete row with auto increment 
Sql :: postgres json to string 
Sql :: mysql update column default value CURRENT_TIMESTAMP error 
Sql :: trim sql oracle 
Sql :: sql server list locks 
Sql :: create a view in sqlite 
Sql :: add column in sql server 
Sql :: mysql create view full table 
Sql :: postgresql add column 
Sql :: oracle timestamp to date 
Sql :: mysql command not working in linux 
Sql :: mysql regexp_replace remove html tag 
Sql :: select where duplicate mysql 
Sql :: select last 30 days sql 
Sql :: oracle case 
Sql :: sql pad left 0 
Sql :: mysql change timestamp on update 
Sql :: connect mysql command line 
Sql :: select random sql 
Sql :: CONVERT time string into 12 hours in sql 
Sql :: how to find the number of rows updated in oracle pl/sql 
Sql :: mysql select date range last 30 days 
Sql :: sql all 
Sql :: sql if empty then 
Sql :: spring boot working with sql database connection 
Sql :: create table in mysql mariadb primary key foreign key 
Sql :: database timezone 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =