簡單資料庫及表建立shell指令碼
#!/bin/bash
USER='root'
PASS='123'
mysql -u $USER -p$PASS <<EOF 2> /dev/null
create database test1;
EOF
[ $? -eq 0 ] && echo "The database Created test1" || echo "The database test1 is already exist"
mysql -u $USE test1 <<EOF 2> /dev/null
create table test1(
ind int,
name varchar(20)
);
EOF
[ $? -eq 0 ] && echo "The table Created test1" || echo "The table test1 is already exist"
mysql -u $USER -p$PASS test1 <<EOF
DELETE FROM test1;
EOF
相關文章
- 建立管理MySQL資料庫的shell指令碼MySql資料庫指令碼
- 簡單的備份資料庫指令碼資料庫指令碼
- 如何建立最簡單的 ABAP 資料庫表,以及編碼從資料庫表中讀取資料 (上)資料庫
- Mysql資料庫的簡單備份指令碼MySql資料庫指令碼
- 指令碼建立Oracle的資料庫指令碼Oracle資料庫
- 手工建立資料庫的全部指令碼及說明(轉)資料庫指令碼
- 教你手工建立資料庫的全部指令碼及說明資料庫指令碼
- 手工建立資料庫的全部指令碼及說明 (轉)資料庫指令碼
- 一個簡單資料庫健康檢查指令碼資料庫指令碼
- python指令碼批次建立資料表Python指令碼
- MySQL資料庫備份的shell指令碼MySql資料庫指令碼
- 巧用shell生成資料庫檢查指令碼資料庫指令碼
- 簡單的 Shell 指令碼入門教程指令碼
- isql指令碼編寫建立資料庫SQL指令碼資料庫
- 建立sqlserver資料庫指令碼 範例SQLServer資料庫指令碼
- 資料庫單表備份還原shell資料庫
- shell指令碼建立使用者及批量建立使用者指令碼
- 通過shell指令碼檢視資料庫表空間使用情況指令碼資料庫
- 透過shell指令碼檢視資料庫表空間使用情況指令碼資料庫
- 簡單介紹Shell指令碼之檔案批次建立與修改的方法指令碼
- 通過shell指令碼批量操作mysql資料庫指令碼MySql資料庫
- Liunx備份mysql資料庫的shell指令碼MySql資料庫指令碼
- 巧用shell指令碼分析資料庫使用者指令碼資料庫
- 監控Oracle資料庫的常用shell指令碼Oracle資料庫指令碼
- Standby資料庫簡單建立過程資料庫
- 快速建立分支Shell指令碼指令碼
- [shell]shell指令碼實現每天自動抽取資料插入hive表指令碼Hive
- 建立SQL Server資料庫指令碼 範例SQLServer資料庫指令碼
- 資料庫環境中的shell指令碼應用資料庫指令碼
- [轉]監控Oracle資料庫的常用shell指令碼Oracle資料庫指令碼
- 監控Oracle資料庫的常用shell指令碼(轉)Oracle資料庫指令碼
- 建立資料庫表資料庫
- 透過shell指令碼生成查詢表資料的sql指令碼SQL
- 通過shell指令碼生成查詢表資料的sql指令碼SQL
- 如何通過簡單的shell指令碼操作MongoDB指令碼MongoDB
- shell指令碼的一則簡單運用案例指令碼
- MySQL 建立資料庫 建立表MySql資料庫
- Sqlserver在映象資料庫上建立快照指令碼SQLServer資料庫指令碼