Linux常用命令98

2021-09-11 00:23:41 字數 3245 閱讀 3845

-- 啟動資料庫

service myslqd start;

-- 進入mysql -u root -p/mysql -h localhost -u root -p databasename;

-- 列出資料庫

show database;

-- 建立資料庫

create database ***x;

-- 選擇資料庫

use databasename;

-- 羅列表

show table;

-- 顯示**的屬性

show columns from tablename;

-- 建立資料庫

source filename.txt;

-- 增加乙個字段

alter table tablename add column filename datatype;

-- 增加多個字段

alter table tablename add column filename1 datatype,add column filename2 datatype;

-- 新增乙個使用者

grant all on *.* to user@localhost identity by "password";

-- 查詢時間

select now();

-- 查詢使用者

select user();

-- 查詢資料庫版本

select version();

-- 查詢當前使用的資料庫

select database();

-- 刪除student_course資料庫中的student資料便

rm -f student_cource/student.*

-- 建立臨時表(mytable)

create temporary table mytable(id int,address varchar(20),name varchar(20));

-- 建立表前先判斷系統是否存在這個表

create table if not exists mytable(......);

-- 從已有的table1表中複製表結構到table2

create table table2 select * from table1 where 1<>1;

-- 複製表

create table table2 select * from table1;

-- 重新命名表名

alter table table1 rename as table2;

-- 修改列的資料型別

alter table table1 modify id int unsigned;--把列id的型別修改為int unsigned

alter table table1 change id sid int unsigned; --把列id改名為 sid且型別改為int unsigned

-- 建立索引

alter table table1 add index ind_id (id);

create index ind_id on tablename (id);

create unique index ind_id on tablename(id);

-- 刪除索引

drop index ind_id on table1;

alter table table1 drop index ind_id;

-- 聯合查詢字元與多個列連線『

select concat(id,':',name,'=') from table1

-----------------------第二片------------------------------------

--顯示資料庫

show database;

--顯示資料庫中的表

show tables;

--顯示資料表結構

describe tablename;

--顯示表記錄

select * from tablename;

--查詢能操作mysql的使用者

select * from user;

--建立資料庫

create database databasename

--例如↓

mysql> create database aa;

---建立表

user aa;

mysql> create table table1(id int auto_increment not null primary key,name char(6),*** char(6),birthday date)

---插入幾條記錄

mysql> insert into aa values('','張三','男','1971-10-01');

mysql> insert into aa values('','劉佳佳','女','1978-10-01');

--驗證結果

mysql> select * from aa;

--修改張三的生日為1971-01-10

mysql> update aa set birthday = '1971-01-10' where id = '1';

--刪除記錄

mysql> delete from aa where id = '1';

--刪除表以及庫

mysql> drop table tablename;

mysql> drop database databasename;

--新增萬能使用者

-- 格式:grant select on database.* to username@localhost identity by 'password'

使用者名稱user_1 密碼是123456

--可以自任何pc上登入這個使用者對資料庫為所欲為

mysql> grant select,insert update,delete on *.* to user_1@"%" identity by "123456";

--建立只有在本機才能運算元據庫的使用者

使用者名稱user_2 密碼是123456

mysql> grant select,insert update,delete on *.* to user_2@localhost identity by "123456";

--登入資料庫庫

mysql> -u user_1 -p -h ip位址;

Linux常用命令之Linux常用命令實戰知識點

在在複習linux,這是以前做的筆記,分享一下。linux系統 一切皆檔案 操作檔案就是操作linux系統 一 linux版本 1 redhat 企業版 收費 2 centos redhat的社群版 免費 3 ubuntu 4 紅旗 二 linux的特點 1 多使用者 多工 2 豐富的網路功能 3 ...

LINUX常用命令

一 目錄結構 目錄名稱 意 義 vmlinuz 該目錄中存放的是系統核心 bin 該目錄中存放linux的常用命令,在有的版本中是一些和根目錄下相同的目錄。boot 該目錄下存放的都是系統啟動時要用到的程式,當用lilo引導linux時,會用到這裡的一些資訊 dev 該目錄包含了linux系統中使用...

linux 常用命令

ssh 連線 eg.ssh l mike www.mydomain.com or 192.168.0.1 scp 複製 本地 遠端 scp localfile username tohost newfile 遠端 本地 scp username tohost remotefile local 把tx...