DELIMITER // DROP PROCEDURE IF EXISTS GetTableFromDelimited// -- NOTE: It's unclear whether the table index is maintained after this procedure so we allow the -- temp table to persist after the procedure to be certain the table is indexed; -- IMPORTANT: Caller is responsible for calling: DROP TEMPORARY TABLE... CREATE PROCEDURE GetTableFromDelimited( IN list VARCHAR(1000), -- Pipe delimited list of values IN areValuesUnique TINYINT, -- BOOLEAN: True: Add an index to temp table, False: No index IN tempTableName VARCHAR(50)) BEGIN DECLARE listLen INT DEFAULT LENGTH(list); DECLARE start INT DEFAULT 1; DECLARE end INT; DECLARE word VARCHAR(100); DECLARE indexClause VARCHAR(20) DEFAULT ''; DECLARE tableName VARCHAR(50) DEFAULT IF(LENGTH(tempTableName)=0,'TempTable',tempTableName); SET @sqlStmt = CONCAT('DROP TEMPORARY TABLE IF EXISTS ', tableName); PREPARE stmt FROM @sqlStmt; EXECUTE stmt; DEALLOCATE PREPARE stmt; IF(areValuesUnique) THEN SET indexClause = ', PRIMARY KEY(item)'; END IF; SET @sqlStmt = CONCAT('CREATE TEMPORARY TABLE ', tableName, ' (item VARCHAR(100) NOT NULL', indexClause, ')'); PREPARE stmt FROM @sqlStmt; EXECUTE stmt; DEALLOCATE PREPARE stmt; WHILE start < listLen DO -- String functions here are 1 based SET end = LOCATE('|', list, start); IF(end = 0) THEN -- end of string reached SET end = listLen + 1; -- (1) is a fake delim END IF; SET word = SUBSTRING(list, start, end - 1); -- (1) is the delim SET start = end + 1; SET @sqlStmt = CONCAT('INSERT INTO ', tableName, ' VALUES( ', word, ' )'); PREPARE stmt FROM @sqlStmt; EXECUTE stmt; DEALLOCATE PREPARE stmt; END WHILE; END// DELIMITER ; SET @list = CONCAT('Corporate//State, Local & Municipal//State, Local & Municipal Litigation', '|', 'Corporate//State, Local & Municipal//Zoning, Planning & Land Use'); -- CALL GetTableFromDelimited(@list, 1, 'MyTempTable'); CALL GetTableFromDelimited('alpha|beta', 0, ''); SELECT * FROM MyTempTable;
Write, Run & Share MySQL queries online using OneCompiler's MySQL online editor and compiler for free. It's one of the robust, feature-rich online editor and compiler for MySQL. Getting started with the OneCompiler's MySQL editor is really simple and pretty fast. The editor shows sample boilerplate code when you choose language as 'MySQL' and start writing queries to learn and test online without worrying about tedious process of installation.
MySQL is a open-source, free and very popular relational database management system which is developed, distributed and supported by Oracle corporation.
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
....);
CREATE TABLE EMPLOYEE (
empId INTEGER PRIMARY KEY,
name TEXT NOT NULL,
dept TEXT NOT NULL
);
ALTER TABLE Table_name ADD column_name datatype;
INSERT INTO EMPLOYEE VALUES (0001, 'Dave', 'Sales');
TRUNCATE table table_name;
DROP TABLE table_name;
RENAME TABLE table_name1 to new_table_name1;
--Line1;
/* Line1,
Line2 */
INSERT INTO table_name (column1, column2, column3, ...) VALUES (value1, value2, value3, ...);
Note: Column names are optional.
INSERT INTO EMPLOYEE VALUES (0001, 'Ava', 'Sales');
SELECT column1, column2, ...
FROM table_name
[where condition];
SELECT * FROM EMPLOYEE where dept ='sales';
UPDATE table_name
SET column1 = value1, column2 = value2, ...
WHERE condition;
UPDATE EMPLOYEE SET dept = 'Sales' WHERE empId='0001';
DELETE FROM table_name where condition;
DELETE from EMPLOYEE where empId='0001';
CREATE INDEX index_name on table_name(column_name);
CREATE UNIQUE INDEX index_name on table_name(column_name);
DROP INDEX index_name ON table_name;
Creating a View:
CREATE VIEW View_name AS
Query;
SELECT * FROM View_name;
ALTER View View_name AS
Query;
DROP VIEW View_name;
CREATE TRIGGER trigger_name trigger_time trigger_event
ON tbl_name FOR EACH ROW [trigger_order] trigger_body
/* where
trigger_time: { BEFORE | AFTER }
trigger_event: { INSERT | UPDATE | DELETE }
trigger_order: { FOLLOWS | PRECEDES } */
DROP TRIGGER [IF EXISTS] trigger_name;
CREATE PROCEDURE sp_name(p1 datatype)
BEGIN
/*Stored procedure code*/
END;
CALL sp_name;
DROP PROCEDURE sp_name;
SELECT * FROM TABLE1 INNER JOIN TABLE2 where condition;
SELECT * FROM TABLE1 LEFT JOIN TABLE2 ON condition;
SELECT * FROM TABLE1 RIGHT JOIN TABLE2 ON condition;
SELECT select_list from TABLE1 CROSS JOIN TABLE2;