mysql 操作查询

一、操作数据库

1、创建数据库

create database 数据库名 charset-uth8;

2、查看所有数据库

show databases

3、使用数据库

use 数据库名

4、查看当前使用的数据库

select databases();

5、删除数据库

drop database 数据库名

6、查看当前数据库中所有表

show tables

7、查看表结构

desc 表名

8、数据表创建
  column: 字段名
  datatype: 数据类型

CREATE TABLE table_name(
column1 datatype,
column2 datatype,
column3 datatype,
…………
columnN datatype
);

例子 创建学生分数表

create table score(
    name varchar(20),
    age tinint,
    subject varchar(20)
    score int
);

 


它的别名是 position in select * from 表名 where locate(字符,字段) select * from 表名 where position(字符 in 字段);

例子:判断site表中的url是否包含'http://'子串,如果不包含则拼接在url字符串开头 update site set url =concat('http://',url) where locate('http://',url)=0

注意mysql中字符串的拼接不能使用加号+,用concat函数。

通过sql查询语句,查询某个字段中包含特定字符串,有下面4种方式:

select * from e_book where types like "%3%";
select * from e_book where find_in_set('3', types);
select * from e_book where locate('3', types);
select * from e_book where INSTR(types,'3');

第2、3中方式相对速度较快。

方法一  like

SELECT * FROM 表名 WHERE 字段名 like "%字符%";


方法二 find_in_set();

利用mysql 字符串函数 find_in_set();

SELECT * FROM users WHERE find_in_set('字符', 字段名); mysql有很多字符串函数 find_in_set(str1,str2)函数是返回str2中str1所在的位置索引,str2必须以","分割开。 注:当str2为NO1:“3,6,13,24,33,36”,NO2:“13,33,36,39”时,判断两个数据中str2字段是否包含‘3’

mysql > SELECT find_in_set()('3','3,6,13,24,33,36') as test; -> 1 mysql > SELECT find_in_set()('3','13,33,36,39') as test; -> 0


方法三  locate(字符,字段名)

使用locate(字符,字段名)函数,如果包含,返回>0的数,否则返回0 ,

它的别名是 position in select * from 表名 where locate(字符,字段) select * from 表名 where position(字符 in 字段);

例子:判断site表中的url是否包含'http://'子串,如果不包含则拼接在url字符串开头 update site set url =concat('http://',url) where locate('http://',url)=0

注意mysql中字符串的拼接不能使用加号+,用concat函数。


方法四 fINSTR(字段,字符);
select * from 表名 where INSTR(字段,字符)

posted @ 2024-07-15 10:36  pxuan  阅读(5)  评论(0编辑  收藏  举报