IF (SELECT count(*)FROM information_schema.tables WHERE table_schema ='databasename'AND table_name ='tablename') > 0
THEN
INSERT statement
END IF
तालिका के अस्तित्व की जाँच करने के लिए सूचना स्कीमा का उपयोग करें
IF (SELECT count(*)FROM information_schema.tables WHERE table_schema ='databasename'AND table_name ='tablename') > 0
THEN
INSERT statement
END IF
तालिका के अस्तित्व की जाँच करने के लिए सूचना स्कीमा का उपयोग करें