Loading

摘要: 步骤 安装node.js 编写程序 目录结构 Project hello-world-project - run.bat - server.js server.js const http = require('http'); const hostname = '127.0.0.1'; const p 阅读全文
posted @ 2021-05-25 21:10 Xaf17 阅读(44) 评论(0) 推荐(0)
摘要: sql不要写成一行,分段写。 程序中动态sql采用占位符写法(也分段写)进行动态替换(而非字符串拼接)。 单表 tableA(mk, a1, a2, fk_rb_a1) 查询 样例1: 查询表中价格在[100, 200]间的记录 query zero or some items select mk, 阅读全文
posted @ 2021-05-25 19:04 Xaf17 阅读(84) 评论(0) 推荐(0)