SQL tablosunu sil

Kod örnekleri

18
0

SQL tablosunu sil

DROP TABLE table_name;
5
0

sql silme

DELETE FROM table_name WHERE condition;
-- 			Ex.
DELETE FROM Customers WHERE CustomerName='Mustafa Mbari';
4
0

SQL bırakma tablosu

-- Drop, but no space gain
DROP TABLE table_name;
-- Really frees space (Oracle)
DROP TABLE table_name PURGE;
3
0

SQL Server'da tablo verilerini boşaltmak için sorgu

TRUNCATE TABLE  table_name;
1
0

tabloyu sil

DROP TABLE table_name; 
1
0

SQL silme tablosu

Deletes a table from a database.
Example: Removes the users table.
DROP TABLE users;
-1
0

bir masa bırak

DROP TABLE table_name;

İlgili sayfalar

Örneklerle ilgili sayfalar

Diğer dillerde

Bu sayfa diğer dillerde

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................