mysql 基本語法整理大全

2021-09-13 18:52:26 字數 1101 閱讀 1134

mysql 語法整理

-- 使用myblog資料庫

use myblog;

-- 顯示表--

-- show tables;

-- 增加

-- insert into users (username,`password`,realname) values ('zhangsan','123','張三');

-- 查詢所有資訊

-- select * from users;

-- 查詢所有使用者單個資訊

-- select username,password from users;

-- 查詢某個使用者的單個資訊 多個條件做判斷

-- select*from users where id="2" or `password`='123';

-- 模糊查詢

-- select * from users where username like '%zhang%';

-- select * from users where password like '%1%';

-- 排序

-- 預設情況是正序

-- select *from users where password like '%1%' order by id;

-- 倒序

-- select * from users where password like '%1%' order by id desc;

-- 更新使用者

update users set realname='李四2' where username='lisi';

-- 刪除使用者

-- delete from users where username='lisi';

軟刪除 0為刪除

-- update users set state='0' where username='lisi';

-- 恢復 1為恢復

-- update users set state='1' where username='lisi';

箭頭符號

不等於 <>

mysql語法大全

1.ubuntu啟動mysql伺服器 sudo service mysql start 需要root許可權 2.ubuntu停止mysql伺服器 sudo service mysql stop 需要root許可權 3.進入mysql mysql h 主機位址 p 主機port u 使用者名稱 p 使...

MySQL語法常用大全 自己整理的學習筆記

select from emp 注釋 命令列連線mysql 啟動mysql伺服器 net start mysql 關閉 net stop mysql 進入mysql h 主機位址 u 使用者名稱 p 使用者密碼 退出exit mysql使用者管理 修改密碼 首先在dos 下進入mysql安裝路徑的b...

cjson基本語法整理

static const char ep 函式中使用const 1 const修飾函式引數 a.傳遞過來的引數在函式內不可以改變 無意義,因為var本身就是形參 void function const int var b.引數指標所指內容為常量不可變 void function const char...