Yahoo Αναζήτηση Διαδυκτίου

Αποτελέσματα Αναζήτησης

  1. 22 Φεβ 2017 · Using Exists statement to delete data from table: IF EXISTS(SELECT 1 FROM Your_table WHERE user_id = user_id) BEGIN DELETE FROM Your_table WHERE user_id= user_id END Delete table from database : IF EXISTS (SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'TheSchema' AND TABLE_NAME = 'TheTable') BEGIN --Your delete statement END

  2. DROP {DATABASE | SCHEMA} [IF EXISTS] db_name. DROP DATABASE drops all tables in the database and deletes the database. Be very careful with this statement! To use DROP DATABASE, you need the DROP privilege on the database. DROP SCHEMA is a synonym for DROP DATABASE.

  3. www.mysqltutorial.org › mysql-stored-procedure › mysql-drop-functionMySQL DROP FUNCTION - MySQL Tutorial

    DROP FUNCTION [IF EXISTS] function_name; Code language: SQL (Structured Query Language) (sql) In this syntax, you specify the name of the stored function that you want to drop after the DROP FUNCTION keywords. The IF EXISTS option allows you to conditionally drop a stored function if it exists.

  4. 7 Σεπ 2024 · Let’s explore the syntax of dropping a table only if it exists in a database: DROP TABLE IF EXISTS table_name; Here: DROP TABLE deletes a table and all of its content from a database; IF EXISTS is a conditional modifier that checks if the specified table exists in the database before attempting to drop it.

  5. The MySQL DROP DATABASE Statement. The DROP DATABASE statement is used to drop an existing SQL database. Syntax. DROP DATABASE databasename; Note: Be careful before dropping a database. Deleting a database will result in loss of complete information stored in the database! DROP DATABASE Example.

  6. 10 Οκτ 2011 · I would test the table exists first, by running a query such as; SHOW TABLES LIKE 'table1'; And then perform the delete based on the results of that query. If the table exists, a single record is returned containing the table name.

  7. I need to find out if a function exists in a database, so that I can drop it and create it again. It should basically be something like the following code that I use for stored procedures: IF EXISTS ( SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[SP_TEST]') AND OBJECTPROPERTY(id, N'IsProcedure') = 1 )

  1. Γίνεται επίσης αναζήτηση για