方法一: <input type="text" autocomplete="off" name="test" /> 方法二: 在 input 所在的form标签中添加 <form action="#" autocomplete="off"> <input type="text" autocomple ...
分类:
Web程序 时间:
2021-05-24 08:42:55
阅读次数:
0
1、用sysdba账号登入数据库,然后查询到要更改的用户信息: SELECT user#,name FROM user$ where user#=110; 2、更改用户名并提交: UPDATE USER$ SET NAME='C##DALIAN' WHERE user#=110; COMMIT; 3 ...
分类:
数据库 时间:
2021-05-24 08:40:10
阅读次数:
0
1.(1)@Component (2)@Service (3)@Controller (4)@Repository * 上面四个注解功能是一样的,都可以用来创建 bean 实例 2 @Autowired:根据属性类型进行自动装配 @Qualifier(value = "") 根据名称进行注入 使用的 ...
分类:
编程语言 时间:
2021-05-24 08:34:40
阅读次数:
0
merge into ZQ_A A using ZQ_B b on (a.name=b.name) when matched then update set a.age=b.age when not matched then insert (a.name,a.age) values(b.name,b ...
分类:
数据库 时间:
2021-05-24 08:28:00
阅读次数:
0
unpivot列转行函数 select 字段 from 数据集 unpivot(自定义列名/*列的值*/ for 自定义列名/*列名的别名,自己定义*/ in(列名)) 注意 後面的是列名 比如 DATEGP CLASS_NAME CLASS_CODE GROUP_ADMIN ISTYPE_CODE ...
分类:
数据库 时间:
2021-05-24 08:27:14
阅读次数:
0
###双指针算法: 核心思想就是缩减时间复杂度 for (int i = 0; i < n; i++) { for (int j = 0; j < n; j++) { 时间复杂度是O(n * n) } } 双指针模板 for (i = 0; j = 0; j < n; j++) { while (j ...
分类:
其他好文 时间:
2021-05-24 08:01:14
阅读次数:
0
//导包import pandas as pd s1=pd.Series([1,2,3],index=[1,2,3],name='A') s2=pd.Series([10,20,30],index=[1,2,3],name='B') s3=pd.Series([100,200,300],index= ...
分类:
其他好文 时间:
2021-05-24 07:58:49
阅读次数:
0
1.获取函数的名称 # 在函数外部获取函数的名称,可以使用.__name__来获取。 def test_func_name1(): print('test') func_name1 = test_func_name1.__name__ print(func_name1) # test_func_na ...
分类:
编程语言 时间:
2021-05-24 07:58:37
阅读次数:
0
看看我1 看看我2 Object.keys() Object.values() <!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>Test</title> <scrip ...
分类:
Web程序 时间:
2021-05-24 07:56:45
阅读次数:
0
对数据进行分组,取每组前三条数据 INSERT INTO `sakila`.`tt` (`id`, `name`, `score`) VALUES ('1', '张三', '50'); INSERT INTO `sakila`.`tt` (`id`, `name`, `score`) VALUES ...
分类:
数据库 时间:
2021-05-24 07:43:02
阅读次数:
0