sqlite 操作记录。

SELECT word, sentenceEn FROM allSentence WHERE word="access" AND sentenceEn="Users can access their voice mail remotely."

SELECT word, phaseEn FROM allPhase WHERE word="access" AND phaseEn="access control"

SELECT word, homologousEn FROM allHomologous WHERE word="access" AND homologousEn="accessible"

SELECT word, synonymEn FROM allSynonym WHERE word="access" AND synonymEn="make use of"

SELECT word, transEn FROM allTrans WHERE word="access" AND transEn="to find information, especially on a computer"

SELECT word, remember FROM allRemember WHERE word="access" AND remember="ac + cess(去) → 来去要走通道 → 通道"

UPDATE allTrans SET transCn=NULL WHERE transCn="/"

SELECT transCn FROM allTrans WHERE transCn="/"

SELECT transCn FROM allTrans WHERE transCn like "%/%"

update allTrans SET transCn=replace(transCn,"/",".")

UPDATE allBookList SET tag1="aa" WHERE bookId="CET4luan_1"

INSERT INTO allFavourite (word) VALUES ("aaa")

DELETE FROM allFavourite WHERE word="aaa"

SELECT bookName FROM allBookList WHERE bookName like "%SAT%" OR tag1 like "%八%"

SELECT word FROM allWord WHERE word like "%a%%a%%b%%c%%a%"

UPDATE allTrans SET transCn=NULL WHERE transCn='"'

相关推荐
mudtools7 分钟前
.NET驾驭Word之力:理解Word对象模型核心 (Application, Document, Range)
c#·.net
得物技术2 小时前
MySQL单表为何别超2000万行?揭秘B+树与16KB页的生死博弈|得物技术
数据库·后端·mysql
侃侃_天下5 小时前
最终的信号类
开发语言·c++·算法
可涵不会debug5 小时前
【IoTDB】时序数据库选型指南:工业大数据场景下的技术突围
数据库·时序数据库
ByteBlossom6 小时前
MySQL 面试场景题之如何处理 BLOB 和CLOB 数据类型?
数据库·mysql·面试
麦兜*6 小时前
MongoDB Atlas 云数据库实战:从零搭建全球多节点集群
java·数据库·spring boot·mongodb·spring·spring cloud
Slaughter信仰6 小时前
深入理解Java虚拟机:JVM高级特性与最佳实践(第3版)第十章知识点问答(10题)
java·jvm·数据库
麦兜*6 小时前
MongoDB 在物联网(IoT)中的应用:海量时序数据处理方案
java·数据库·spring boot·物联网·mongodb·spring
echoarts6 小时前
Rayon Rust中的数据并行库入门教程
开发语言·其他·算法·rust