mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
845 B
45 lines
845 B
/* |
|
|
|
Sakila for SQLite is a port of the Sakila example database available for MySQL, which was originally developed by Mike Hillyer of the MySQL AB documentation team. |
|
This project is designed to help database administrators to decide which database to use for development of new products |
|
The user can run the same SQL against different kind of databases and compare the performance |
|
|
|
License: BSD |
|
Copyright DB Software Laboratory |
|
http://www.etl-tools.com |
|
|
|
*/ |
|
|
|
-- Delete data |
|
DELETE FROM payment |
|
; |
|
DELETE FROM rental |
|
; |
|
DELETE FROM customer |
|
; |
|
DELETE FROM film_category |
|
; |
|
DELETE FROM film_text |
|
; |
|
DELETE FROM film_actor |
|
; |
|
DELETE FROM inventory |
|
; |
|
DELETE FROM film |
|
; |
|
DELETE FROM category |
|
; |
|
DELETE FROM staff |
|
; |
|
DELETE FROM store |
|
; |
|
DELETE FROM actor |
|
; |
|
DELETE FROM address |
|
; |
|
DELETE FROM city |
|
; |
|
DELETE FROM country |
|
; |
|
DELETE FROM language |
|
; |