forked from elmansey/BashScriptProjectDBMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSelectFromTable.sh
131 lines (129 loc) · 5.83 KB
/
SelectFromTable.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/bin/bash
# author : Ahmed Gamal
echo -e "${cyan}Please, Enter Table Name which you want to select data ${clear}"
read table_name
if [[ $table_name =~ ^[a-z_A-Z]+[a-zA-Z_0-9]+$ ]]; then
if [[ -f $table_name ]]; then
select choice in "SelectAll" "SelectSpecificRow" "SelectCloumns" "Back to table menu"; do
case $choice in
"SelectAll")
cat $table_name
;;
"SelectSpecificRow")
continueFlag=true
while [[ $continueFlag == true ]]; do
col_names=()
col_names=($(awk -F':' '{print $1}' "$table_name meta_data.txt"))
echo -e "${cyan}please select the cloumn ${clear}"
res=()
select cname in ${col_names[@]}; do
ColumnPosition=$(awk -F':' -v column=$cname '{if($1==column){print NR}}' "$table_name meta_data.txt")
while [ true ]; do
# check if the column not in select choices
if ! [[ -z $ColumnPosition ]]; then
echo -e "${cyan}Enter $cname value to select Row by it:${clear}"
read value
res=($(awk -F':' -v ColumnPos=$ColumnPosition -v val=$value '{if($ColumnPos==val){print $0}}' "$table_name"))
len=${#res[@]}
if [[ $len == 0 ]]; then
echo -e "${red}your condition not matched any rows :(${clear}"
else
for i in ${res[@]}; do
echo $i
done
fi
break
else
echo -e "${red}invaild input this column not exist !${clear}"
break # this break for to go select again
fi
done
break # if write choise go out from select
done
echo -e "${yellow}are you want to select another rows y - or any ather btn to cancel : "
read answer
if [[ $answer == "y" ]]; then
continueFlag=true
else
break
fi
done
;;
"SelectCloumns")
col_names=()
col_names=($(awk -F':' '{print $1}' "$table_name meta_data.txt"))
echo -e "${cyan}please select the column ${clear}"
select cname in ${col_names[@]}; do
ColumnPosition=$(awk -F':' -v column=$cname '{if($1==column){print NR}}' "$table_name meta_data.txt")
if ! [[ -z $ColumnPosition ]];then
awk -F':' -v column=$ColumnPosition '{print $column}' "$table_name"
break # to break from select
else
echo -e "${red}invaild input this column not exist !${clear}"
fi
done
;;
"Back to table menu")
PS3="============ Choise Operation ============ : "
select choise in "Create Table" "List Tables" "Drop Table" "Insert into Table" "Select From Table" "Delete From Table" "Update Table" "Exit" "Back to Main Menu"
do
case $choise in
"Create Table")
source ../../CreateTable.sh
;;
"List Tables")
source ../../ListTables.sh
;;
"Drop Table")
source ../../DropTable.sh
;;
"Insert into Table")
source ../../InsertIntoTable.sh
;;
"Select From Table")
source ../../SelectFromTable.sh
;;
"Delete From Table")
source ../../DeleteFromTable.sh
;;
"Update Table")
source ../../UpdateFromTable.sh
;;
"Back to Main Menu")
cd ../
PS3="============ Choise Operation ============ : "
select choise in "Create Database" "List Databases" "Connect To Databases" "Drop Database" "Exit"
do
case $choise in
"Create Database")
source ../CreateDatabase.sh
;;
"List Databases")
source ../ListDatabase.sh
;;
"Connect To Databases")
source ../ConnectToDatabase.sh
;;
"Drop Database")
source ../DropDatabase.sh
;;
"Exit")
exit;;
*)
echo -e "${red}invalid choise try again${clear}" ;;
esac
done
;;
"Exit") exit;;
*) echo -e "${red}invalid choise try again${clear}" ;;
esac
done
;;
esac
done
else
echo -e "${red}Table not exist ! ${clear}"
fi
else
echo -e "${red}Invalid input ${clear}"
fi