xxxxxxxxxx
#sql select query
SELECT * FROM table_name;
-- Sorting col1 ASCending then col2 DESCending
SELECT col1, col2 FROM table_name ORDER BY col1 ASC, col2 DESC;
-- Filter on col1
SELECT col1, col2 FROM table_name WHERE col1 = 'a value';
-- Containing 'searched'
SELECT col1, col2 FROM table_name WHERE col1 LIKE '%searched%';
-- All different values
SELECT DISTINCT col1 FROM table_name;
-- Simple sum
SELECT col1, sum(col2) FROM table_name GROUP BY col1;
xxxxxxxxxx
-- retrieves all data from a database table
SELECT * FROM Customers
-- retrieves specific columns data from a database table
SELECT Name,Address FROM Customers
-- Kindly upvote this answer if it helped you.
xxxxxxxxxx
SELECT column1 = (SELECT column-name FROM table-name WHERE condition), column-names FROM table-name WEHRE condition