Re: Does Table Exist
DELIMITER //
CREATE PROCEDURE TableExists (IN name VARCHAR(64), OUT found INT)
BEGIN
SELECT (COUNT(*) > 0) INTO found
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_NAME = name;
END //
DELIMITER ;
CALL TableExists('t1', @foundit);
SELECT @foundit; # 1 if table exists, 0 if not
Jon Stephens
MySQL Documentation Team @ Oracle
Orlando, Florida, USA
MySQL Dev Zone
MySQL Server Documentation
Oracle
Subject
Views
Written By
Posted
633
April 29, 2020 02:15PM
338
April 29, 2020 03:25PM
Re: Does Table Exist
327
April 30, 2020 11:16AM
366
June 11, 2020 11:25AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.