· 9 years ago · Sep 14, 2017, 02:20 AM
1 file commans.sql :
2
3create database IF NOT EXISTS btral;
4use btral;
5create table (
6name varchar(17);
7)
8;
9
10************************
11 bash:
12#!/bin/bash
13
14
15#mysql -uroot -p111111 -e 'create database IF NOT EXISTS testing'
16mysql --host=localhost --user=root --password=111111 < commands.sql