MySQL醫生表 mysql常用操作示例

2021-10-19 19:15:17 字數 1068 閱讀 2300

sudo rpm -uvh

2 安裝mysql:

yum install mysql mysql-server mysql-libs mysql-server

3 啟動mysql服務:

service mysqld start

4 開機啟動:

chkconfig mysqld on

5.mysql登入

mysql -u root -p

6.登入後賦予外部ip訪問許可權

mysql>grant all privileges on *.* to 'root'@'%' identified by '123456';

7.重新整理配置,立即生效

mysql>flush privileges;

8.外部匯入sql檔案

source /root/jxw.sql

示例sql檔案:

drop database jxw;

create database jxw;

use jxw;

set names utf8mb4;

set foreign_key_checks = 0;

-- table structure for city

drop table if exists `city`;

create table `city` (

`id` bigint(20) not null auto_increment,

`name` varchar(255) default null,

`state` varchar(255) default null,

primary key (`id`)

) engine=innodb auto_increment=3 default charset=utf8 comment='市級資訊';

-- records of city

begin;

insert into `city` values (1, '石家莊', '河北');

insert into `city` values (2, '邯鄲', '河北');

commit;

mysql 修改表命令 MySQL常用修改表命令

mysql常用修改表命令 1.新增字段 alter table 表名 add 欄位名 first after 列名 alter table teacher add address varchar 50 comment 位址 最後一列 alter table teacher add address v...

mysql常用系統表

select from information schema.tables where table schema 資料庫名 select from information schema.columns where table schema 資料庫名 and table name 表名 select ...

Mysql 常用 表操作

修改字段長度命令 alter table 表名 modify column 列名 型別 修改後的長度 alter table dw.ind user company modify column company class varchar 200 修改字段型別 alter table dw.ind u...