随笔分类 - 数据库
摘要:Redis Redis 是典型的 NoSQL 数据库。 redis官网:https://redis.io/download Redis 是一个开源的 key-value 存储系统。 和 Memcached 类似,它支持存储的 value 类型相对更多,包括 string、list、set、zset、
阅读全文
摘要:SELECT t.teacherName,c.CourseName,s.stuName FROM teacher t LEFT JOIN teachercourse tc on t.id =tc.tid LEFT JOIN course c ON tc.cid =c.id LEFT JOIN stu
阅读全文