More details can be found in our NDSS 2026 paper. Efficiently Detecting DBMS Bugs through Bottom-up Syntax-based SQL Generation @inproceedings{liang:sqlbull, title = {{Efficiently Detecting DBMS Bugs ...
Abstract: The SQL specification consists of hundreds of statement types, which leads to difficulties in DBMS fuzzing: state-of-the-art works generally reuse the statements of predefined types; the ...
-- Employees table CREATE TABLE employee ( employ_id INT AUTO_INCREMENT PRIMARY KEY, employ_name VARCHAR(100) NOT NULL, role VARCHAR(50), salary DECIMAL(10,2) ) ENGINE=InnoDB; -- Branch table CREATE ...