关于substr()函数和substring()函数 关于substr()和substring()区别 MySQL: SUBSTR( ), SUBSTRING( ) Oracle: SUBSTR( ) SQL Server: SUBSTRING( ) 例如 Oracle: select substr ...
分类:
数据库 时间:
2021-06-02 12:25:36
阅读次数:
0
1.在PreparedStatement创建SQL对象后,调用preparedStatement()方法时,通过占位符?来按照索引进行SQL语句动态执行通过setString()方法和setInt()方法来为占位符?赋值String selectSql = "SELECT * FROM studen ...
分类:
数据库 时间:
2021-06-02 12:16:44
阅读次数:
0
You can't specify target table '表名' for update in FROM clause (来源) 翻译为:不能先select出同一表中的某些值,再update这个表(在同一语句中) 解决办法:将SELECT出的结果再通过中间表SELECT一遍 UPDATE res ...
分类:
数据库 时间:
2021-06-02 11:37:21
阅读次数:
0
两个表,表1 表2 如果要将 表1的数据并入表2用以下语句即可 insert into 表2(字段1,字段2) select 字段1,字段2 from b1 注意把字段名全部写清楚 select * into 新表名 from (select * from T1 union all select * ...
分类:
数据库 时间:
2021-06-02 11:23:15
阅读次数:
0
在sql注入中我们通常会使用这样一条语句来爆破字段: id=-1 union select 1,2,3 --+ 源代码: SELECT * FROM users WHERE id=-1 union select 1,2,3 假如表的字段是三个,他会根据程序的设定来输出哪个字段。如果这时使用键值对来查 ...
分类:
其他好文 时间:
2021-06-02 11:12:14
阅读次数:
0
授权语法sql 一.用户的创建与使用 在管理员登录后可创建用户 --创建qfplan用户-create user qfplan identified by qfplan; --用户基本权限授权grant create session, connect ,resource to qfplan; --给 ...
分类:
其他好文 时间:
2021-06-02 11:00:18
阅读次数:
0
8.1 UPDATE作用 UPDATE语句用于更新表中的现有记录。 8.2 UPDATE语法 UPDATE table_name SET column1=values,column2=values2,... WHERE condition; 注意:更新表中的记录时要小心,要注意UPDATE语句中的W ...
分类:
其他好文 时间:
2021-06-02 10:47:12
阅读次数:
0
合并两个或多个select 语句的结果 条件: 前后select 语句的列必须数量一致,且列的类型,顺序要相同或相似 select union (默认去重,显示不同的行) select 》select 1中的第一列+select 2中的第一列==第一列union all 不去重 1+2 ...
分类:
其他好文 时间:
2021-06-02 10:46:55
阅读次数:
0
You have n boxes. You are given a binary string boxes of length n, where boxes[i] is '0' if the ith box is empty, and '1' if it contains one ball. In ...
分类:
其他好文 时间:
2021-06-02 10:37:12
阅读次数:
0
mysql相关 1,存储引擎 2,最左原则于命中规则 index(a,b,c) where a=3 只使用了a where a=3 and b=5 使用了a,b where a=3 and b=5 and c=4 使用了a,b,c where b=3 or where c=4 没有使用索引 wher ...
分类:
其他好文 时间:
2021-05-25 18:02:53
阅读次数:
0