mysql
wb_it_man
我是要当海贼王的男人!!!!
展开
-
数据库查询语句遇到:Unknown column ‘XXXX‘ in ‘where clause‘解决方法
https://blog.csdn.net/qq_37486501/article/details/85165125转载 2021-03-15 16:18:51 · 1450 阅读 · 0 评论 -
Trigger in wrong schema
写触发器时,A数据库中的表插入数据时,把这条数据也插入到B数据库的表中。创建触发器时应该是在A数据库下,在B数据库下就会报这个错误。原创 2021-03-08 10:17:47 · 660 阅读 · 0 评论 -
sql语句总结
1.SQL查询语句中的 limit 与 offset 的区别: limit y分句表示: 读取 y 条数据 limit x, y分句表示: 跳过 x 条数据,读取 y 条数据 limit y offset x分句表示: 跳过 x 条数据,读取 y 条数据 2.distinctselect * from employees where hire_date = ( select distinct hire_date from employees order...原创 2021-03-02 14:51:04 · 89 阅读 · 0 评论