Hello, does the IF statement work in Heidi? I would like to drop a table if empty, and I can't seem to get conditionals to work. Thanks!
IF statements
HeidiSQL is just a client tool for some other program: MySQL Server. It doesn't have any language or syntax of its own.
MySQL documentation doesn't have a good search engine but a Google search like "mysql 5.7 whatever" normally finds the appropriate docs, e.g.:
mysql 5.7 drop table → https://dev.mysql.com/doc/en/drop-table.html
mysql 5.7 if conditional → https://dev.mysql.com/doc/refman/5.7/en/if.html
Remember that SQL is not a programming language. The syntax used in stored routines (which has programming stuff like flow control operators) is not really SQL although, unfortunately, MySQL doesn't give it a proper name as far as I can tell.
Please login to leave a reply, or register at first.