根据mysql网站,我应该可以使用if语句启动查询。
IF search_condition THEN statement_list
[ELSEIF search_condition THEN statement_list] ...
[ELSE statement_list]
END IF
但是当我尝试这个查询时
if (count(1)
FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS
WHERE TABLE_SCHEMA = 'dbname'
AND TABLE_NAME='tblname'
AND CONSTRAINT_NAME = 'con_name')
then
alter table table drop foreign key constraint_name;
end if
我得到一个语法错误,说我在“IF”附近有错误的语法,而mysql workbench突出显示if if syntax语法错误,如果是。
我尝试过使用begin,并省略了开始和结束,但错误始终是相同的。
答案 0 :(得分:1)
您不能将if
或while
条件用在声明旁边,除非它们包含在begin
- end
的代码块中。因此db引擎会在您的语句中引发错误。
要使您的语句正常工作,您还需要一个存储过程以及对该语句的一些更改。
示例:
delimiter //
drop procedure if exists drop_constraint //
create procedure drop_constraint(
in dbName varchar(64),
in tableName varchar(64),
in constraintName varchar(64) )
begin
declare cnt int default 0;
select count(1) into cnt
from INFORMATION_SCHEMA.TABLE_CONSTRAINTS
where
table_schema = dbName
and table_name = tableName
and constraint_name = constraintName;
-- now check if any found
if ( cnt > 0 ) then -- if found some
-- now, execute your alter statement
-- include your alter table statement here
end if;
end;
//
delimiter ;
使用上述步骤可以检查并删除约束。
mysql> call drop_constraint( 'test', 'my_table', 'fk_name' );
答案 1 :(得分:0)
你不能,如果两个表都有相同的结构(或者你把相同的结构而不是*)你可以这样使用联合
select * from sometable WHERE (SELECT 1 FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE TABLE_SCHEMA = 'dbname' AND TABLE_NAME='tblname' AND CONSTRAINT_NAME = 'con_name') = 1
union all
select * from anothertable WHERE (SELECT 1 FROM INFORMATION_SCHEMA.TABLE_CONSTRAINTS WHERE TABLE_SCHEMA = 'dbname' AND TABLE_NAME='tblname' AND CONSTRAINT_NAME = 'con_name') IS NULL
Alternatievly你可以通过使用存储过程实现这一点(与你写的几乎相同的synbtax)