[root@www.***ba.cn software]# unzip sakila-db.zip
[root@www.***ba.cn software]# ls -l sakila*
-rw-r--r-- 1 root root 741613 mar 28 12:59 sakila-db.zip
sakila-db:
total 3396
-rw-r--r-- 1 root root 3398148 jul 21 2016 sakila-data.sql
-rw-r--r-- 1 root root 50019 jul 21 2016 sakila.mwb
-rw-r--r-- 1 root root 23424 jul 21 2016 sakila-schema.sql
1).sakila-data.sql //sakila庫資料
2).sakila-schema.sql //sakila庫的表結構sql語句
3).sakila.mwb //sakila的mysql workbench資料模型
注意mysql的版本一定要是5.6及以上,因為有的表建立了fulltext全文索引,而innodb在5.6之後才支援全文索引
檢視資料庫版本
mariadb [sakila]> select version();
+---------------------+
| version() |
+---------------------+
| 10.2.13-mariadb-log |
+---------------------+
[root@www.***ba.cn software]# mysql -uroot -proot
welcome to the mariadb monitor. commands end with ; or /g.
your mariadb connection id is 27
server version: 10.2.13-mariadb-log mariadb server
type 'help;' or '/h' for help. type '/c' to clear the current input statement.
mariadb [(none)]> source /software/sakila-db/sakila-schema.sql
mariadb [sakila]> source /software/sakila-db/sakila-data.sql
安裝mysql示例資料庫sakila
位址為 1.sakila data.sql sakila庫資料 2.sakila schema.sql sakila庫的表結構sql語句 3.sakila.mwb sakila的mysql workbench資料模型 注意mysql的版本一定要是5.6及以上,因為有的表建立了fulltext全文索引...
安裝 Northwind 示例資料庫
當系統提示您執行或儲存該檔案,單擊 儲存 然後選擇檔案目錄,例如 c temp。在 檔案資源管理器中,導航到要儲存檔案的目錄,並雙擊 sql2000sampledb。microsoft sql server 2000 示例資料庫指令碼 嚮導將出現。單擊 下一步 繼續。在 許可協議 頁上,閱讀協議,如...
MySQL示例資料庫(一)準備
我們使用classicmodels資料庫作為mysql樣本資料庫,以幫助您快速有效地使用mysql。該classicmodels資料庫是經典汽車資料庫的規模模型的零售商。它包含典型的業務資料,如客戶,產品,銷售訂單,銷售訂單行專案等。我們在mysql教程中使用這個示例資料庫來演示從簡單查詢到複雜儲存...