SQL Notes
SQL Notes
SELECT * FROM tablename where id=9 ORDER BY first_name, last_name: shows the rows ordered by
name
LIKE : last_name like ‘b%’; %:any number of character , _:exactly one character
REGEXP: WHERE name REGEXP ‘sa’ == WHERE name LIKE ‘%sa%’ – ‘^sa’ : start with sa – ‘an$’ ends with
an – ‘sa|le’ whether have se or le – ‘^se|la’ whether start with se or have la – ‘[ea]b’ : eb or ab – ‘[a-g]e’
ae ,be ,ce , …
SELECT firstname , last name FROM table ORDER BY 1,2 : orders by firstname and lastname
ORDER BY quantity*unit_price;
SELECT * FROM TABLE1 e JOIN TALBE2 f ON TABLE e.id=f.id : SELECT * FROM TABLE1 e JOIN TALBE2 f
USING (id)
LEFT JOIN : finds the records on left table even if there’s no corespondant data on table2
RIGHT JOIN: same as left join but reversed
SELECT * FROM table1 NATURAL JOIN table2 : database engine will join two table based on common
columns
INSERT INTO customers (first_name) values (‘meysam’); INSERT INTO ORDERS (customer_id , item)
VALUES ( LAST_INSERT_ID() , ‘something’)
UPDATE table SET first_name = ‘ali’ WHERE id IN (SELECT id FROM table2 WHERE point>300)
SELECT client_id , SUM(amount) AS total FROM orders GROUP BY client_id WITH ROLLUP :shows the
sums
SELECT * FROM employees WHERE salary > (SELECT AVG(salary) FROM employees) : employees who
earn more than average
SELECT * FROM products WHERE product_id NOT IN (SELECT DISTINCT product_id FROM order_items) :
selects products that have never been ordered
SELECT * FROM invoices WHERE invoice_total > ALL ( SELECT invoice_total FROM invoices WHERE
client_di = 3) : SELECT * FROM invoices WHERE invoice_total > ( SELECT MAX(invoice_total) FROM
invoices WHERE client_di = 3)
= ANY : = SOME : IN
SELECT client_id FROM invoices GOURP BY client_id HAVING COUNT(*) >= 2 : shows only the clients_id
who have more than two invoices
SELECT * FROM employees e WHERE salary > (SELECT AVG(salary) FROM employees WHERE office_id =
e.office_id) : select employees who earn more than average in their office(correlated subquery)
SELECT * FROM clients c WHERE EXISTS ( SELECT client_di FROM invoices WHERE client_id = c.client_id)
LENGTH(‘sky’) =3 , LOWER() , UPPER() , LTRIM() : left trim , RTRIM() : right trim , LEFT(‘hello’, 2) = ‘he’ ,
RIGHT() , SUBSTRING(‘mystring’ , 3 , 5) , LOCATE(‘n’ , ‘kindergarden’)=3 , REPLACE(‘kindergarden’ ,
‘garden’ , ‘garten’) , CONCAT(‘first’ , ‘last’)
NOW() : current date and time , CURDATE() : current date , CURTIME() : current time , YEAR(NOW()) :
gets the current year , MONTH , DAY, HOUR , MINUTE , SECOND , DAYNAME , MONTHNAME
DATE_FORMAT(NOW() , ‘%y’ ) : 2 digit year, ‘%Y’ for 4 digit year , ‘%m’ two digit month, ‘%M’ month
name , ‘%d’
SELECT CASE WHEN expression THEN ‘somevalue’ WHEN …. ELSE ‘default’ END AS ‘columnname’
CREATE VIEW viewname AS SELECT * FROM table WHERE condition, then we can :
if view doesn’t have DISTINCT, agregate functions(SUM, AVG,…), UNTION, we can update data in view
WITH CHECK OPTIONS : checks to see whether after updating a record in table it does not dissapears
DELIMITER $$ CREATE PROCEDURE get_clients() BEGIN SELECT * FROM clients; END$$ DELIMETER ;
CALL get_clients()
DELIMITER $$ CREATE PROCEDURE get_clients_by_state( pstate CHAR(2)) BEGIN SELECT * FROM clients
WHERE state=pstate; END$$ DELIMETER ;
DELIMITER $$ CREATE PROCEDURE get_clients_by_state( pstate CHAR(2)) BEGIN IF pstate IS NULL pstate
=’CA’; END IF; SELECT * FROM clients WHERE state=pstate; END$$ DELIMETER ;
DELIMITER $$ CREATE PROCEDURE get_clients_by_state( pstate CHAR(2)) BEGIN SELECT * FROM clients
WHERE state = IFNULL(pstate, state); END$$ DELIMETER ;
DELIMITER $$ CREATE PROCEDURE get_clients_by_id(pid INT) BEGIN IF id<=0 SIGNAL SQLSTATE ‘22003’
SET MESSAGE_TEXT = ‘invalid input’END IF … :22003 is the code for invalid data …
DELIMITER $$ CREATE PROCEDURE get_count_avg( dep CHAR(2) , OUT count INT , OUT average INT)
BEGIN SELECT COUNT(*) , AVG(salary) INTO count, average FROM employee WHERE dep=dep; END$$
DELIMETER ;
SET @count =0; SET @average=0; CALL get_count_avg (‘hr’ , @count , @average); SELECT @count ,
@average;
DELIMITER $$ CREATE PROCEDURE get_count () BEGIN DECLARE count INT DEFAULT 0; SELECT count(*)
INTO count FROM employee; SELECT count; END$$ DELIMETER ;
DELIMITER $$ CREATE FUNCTION get_count ( client_id INT) RETURNS INTEGER DETERMINISTIC READS
SQL DATA BEGIN DECLARE count INT DEFAULT 0; SELECT count(*) INTO count FROM employee; RETURN
count; END$$ DELIMETER ;
DELIMITER $$ CREATE TRIGGER payment_after_insert AFTER INSERT ON payments FOR EACH ROW
BEGIN UPDATE invoices SET payment_total = payment_total + NEW.amount WHERE invoice_id =
NEW.invoice_id END $$ DELIMITER ;
COMMIT; /ROLLBACK
TINYINT 1b
SMALLINT 2b
MEDIUMINT 3b
INT 4b
BIGINT 8b
FLOAT 4b
DOUBLE 8b
DATE
TIME
DATETIME 8b
TIMESTAMP 4b
YEAR 4digit
TINYBLOB 255b
BLOB 65kb
MEDIUMBLOB 16mb
LONGBLOB 4gb
JSON
or
if we use ->> instead of -> we wont get “” when retrieving strings from json
CREATE TABLE orders ( order_id INT PRIMARY KEY, customer_id INT NOT NULL, FOREIGN KEY
fk_orders_customers (customer_id) REFERENCES customer(id) ON UPDATE CASSCADE ON DELETE NO
ACTION)
ALTER TABLE orders DROP PRIMARY KEY, ADD PRIMARY KEY (order_id), DROP FOREIGN KEY
fk_orders_customers, ADD FOREIGN KEY fk_something_id (customer_id) REFERENCES customers
(customer_id);
SHOW CHARSET;
SHOW ENGINES;
EXPLAIN SELECT customer_id FROM customers WHERE state=’ca’ : shows how many rows does db
search
ANALYZE TABLE customers; refreshes the data for statistics for table
CREATE INDEX idx_lastname ON customers (last_name(20) ) : indexes the first 20 characters in string
column
SELECT * , MATCH(title, body) AGAINST(‘react redux’) FROM posts WHERE MATCH(title, body)
AGAINST(‘react redux’); shows also the relevancy level
SELECT * , MATCH(title, body) AGAINST(‘react redux’) FROM posts WHERE MATCH(title, body)
AGAINST(‘react –redux +form’ IN BOOLEAN MODE); must have from and not have redux, use “ for exact
phrase
SHOW STATUS LIKE ‘last_query_cost’ ; shows the cost of the last query
todos :
search why sorting by column1 and column2 desc ignores index with (column1,column2)