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 :: case condition in mongodb 
Sql :: match in sql server 
Sql :: sql server set default value equal to auto increment 
Sql :: microsoft sql server python connection 
Sql :: like query 
Sql :: sql 2 way of select unique 
Sql :: how to get table id sequence postgres 
Sql :: ORACLE sql join multiple tables 
Sql :: how to select multiple columns from different tables in mysql 
Sql :: get size of mysql database 
Sql :: having clause 
Sql :: sqlite clear shell 
Sql :: postgresql having 
Sql :: array aggre distinct postgres 
Sql :: azure check access to sql database 
Sql :: oracle list user locked 
Sql :: create a plsql object 
Sql :: mysql regex phone number 
Sql :: sql order of execution 
Sql :: limit and offset in stored procedure mssql 
Sql :: create atable copy in pgsql 
Sql :: homebrew mysql service not starting 
Sql :: postgresql insert multiple rows 
Sql :: compound trigger oracle 
Sql :: how to get last element sql 
Sql :: sql creating tables 
Sql :: WHERE value IS sql 
Sql :: sql full outer join 
Sql :: replace function in sql 
Sql :: read sql file in python pandas 
ADD CONTENT
Topic
Content
Source link
Name
1+5 =