資料庫筆記(資料庫操作)

2021-10-21 02:17:28 字數 780 閱讀 6658

1.windows系統下 資料庫啟動

net start mysql
2.連線與斷開伺服器

mysql -h 位址 -p 埠 -u 使用者名稱 -p 密碼
3.檢視當前資料庫

select database();
4.顯示當前時間,使用者名稱,資料庫版本 

select now(),user(),version();
5.建立庫

1.create database [if not exists] database_name [default] database_option

2.database_option:

character set charset_name

collate collation_name

3.create database ssm character set utf8mb4 collate utf8mb4_unicode_ci;

6.檢視已有庫

show databases [like "table_name"]
7.刪除

drop database [if exists] database_name
8.修改

alter database database_name 選項資訊

學習筆記 資料庫

目前internet 上流行的 構架方式是lamp linux apache mysql php 即使用 linux 作為作業系統,apache 作為web 伺服器,mysql 作為資料庫,php作為伺服器端指令碼直譯器 由於這四個軟體都是免費或開放原始碼軟體 floss 因此使用這種方式不用花一分...

iOS學習筆記 資料庫操作 SQLite

sqlite 是乙個輕量級的關聯式資料庫。sqlite最初的設計目標是用於嵌入式系統,它占用資源非常少,在嵌入式裝置中,只需要幾百k的記憶體就夠了,目前應用於android ios windows phone等智慧型手機。ios 使用時sqlite,只需要加入 libsqlite3.dylib 依賴...

iOS學習筆記 資料庫操作 SQLite

sqlite 是乙個輕量級的關聯式資料庫。sqlite最初的設計目標是用於嵌入式系統,它占用資源非常少,在嵌入式裝置中,只需要幾百k的記憶體就夠了,目前應用於android ios windows phone等智慧型手機。ios 使用時sqlite,只需要加入 libsqlite3.dylib 依賴...