-
Notifications
You must be signed in to change notification settings - Fork 0
/
012-LIKE子句.js
53 lines (46 loc) · 1.23 KB
/
012-LIKE子句.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/*
* @Date: 2023-06-06 19:36:18
* @LastEditors: with-the-winds
* @LastEditTime: 2023-06-06 19:36:31
* @Description: 头部注释
* @FilePath: \study-node-mysql\012-LIKE子句.js
*/
const mysql = require('mysql')
// 创建连接
const db = mysql.createConnection({
host: 'localhost',
user: 'root',
password: 'root123',
database: 'nodemysql1'
})
// 连接数据库
db.connect(err => {
if (err) throw err;
console.log('mysql connected ......');
})
/**
* 语法:
* SELECT field1, field2, ...
* FROM table_name
* WHERE field1 LIKE condition1 [AND [OR]] filed2 = 'somevalue'
* 解释:
* LIKE 子句中使用百分号 %字符来表示任意字符,类似于UNIX或正则表达式中的星号 *
* 如果没有使用百分号 %, LIKE 子句与等号 = 的效果是一样的
*/
const selectSql = `SELECT * FROM goods WHERE name LIKE '%子' OR numbers = 15`
db.query(selectSql, (error, results) => {
if (error) throw error;
console.log('selected successfully !');
console.log(results);
})
db.end();
/**
* 符号说明:
* %, _, [], [^]
* %a 以a结尾的数据
* a% 以a开头的数据
* %a% 含有a的数据
* _a_ 三位且中间字母是a的
* _a 两位且结尾字母是a的
* a_ 两位且开头字母是a的
*/