SQLize Online / PHPize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
create table dbname ( col1 integer, col2 integer, col3 integer, col4 integer ); create unique index col1_uniq on dbname (col1); -- success INSERT INTO dbname(col1, col2, col3, col4) VALUES (1, 2, 3, 4); -- fail INSERT INTO dbname(col1, col2, col3, col4) VALUES (1, 2, 3, 4);
Stuck with a problem? Got Error? Ask ChatGPT!
Copy Clear