mysql常用句 mysql常用語句

2021-10-22 07:20:52 字數 766 閱讀 1247

select version();//查詢mysql版本

use myblog;  //使用某資料庫

--show tables; //--注釋,展示表

insert into users(username,`password`,realname) values('lisi','123','李四');//插入語句,注意password關鍵字寫法``

select * from users;//*查詢全部,一般不建議

select id,username from users;

select * from users where username='zhangsan';//條件查詢

select * from users where username='zhangsan' and password='123;//多條件查詢

select * from users where username='zhangsan' or password='123;//多條件查詢

select * from users where username like '%zhang%';//模糊查詢username裡包含zhang

select * from users where username like '%zhang%' order by id;//排序

select * from users where username like '%zhang%' order by id desc;//倒序

update users set realname&

常用mysql語句 常用MySql語句

新建資料表 drop table if exists ga game way create table ga game way id int 11 unsigned not null auto increment comment id primary key id using btree,主鍵 un...

mysql常用方法 mysql 常用方法

處理字元 1 concat aaa bbb ccc 拼接字串,oracle也有這個方法不過只能拼接2個,而且一般用 mysql中 表示或。相當於or 2 ifnull name,aaa 當name null時,返回 aaa 3.upper aaa lower aaa 變為大寫,小寫 4.substr...

mysql常用指令 Mysql常用指令

mysql常用指令2021 01 19 23 40 45 作用 去除select 查詢出來的結果中重複的資料,重複資料只展示一列.關鍵字 distinct 用法 select distinct source from student table source 去重的字段條件 student tabl...