摘要:
前天写SQL时本想通过 A left B join on and 后面的条件来使查出的两条记录变成一条,奈何发现还是有两条。 后来发现 join on and 不会过滤结果记录条数,只会根据and后的条件是否显示 B表的记录,A表的记录一定会显示。 不管and 后面的是A.id=1还是B.id=1, 阅读全文
摘要:
报错信息:selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <span xxxx>xxxx</span> is not clickable 阅读全文
摘要:
(1)使用 load data 导入数据,首先要准备一个文件,本例是test.txt mysql> load data local infile '/root/test.txt' ignore into table login character set utf8 fields terminated 阅读全文