- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
给出我想要构造的以下 SQL 语句:
SELECT CONCAT(employees.first_name," ", employees.last_name), landlines.number
FROM employees,landlines WHERE employees.id=landlines.emp_id ORDER BY employees.last_name
最初它是使用问号参数创建的,如下所示:
SELECT CONCAT(employees.first_name," ", employees.last_name), landlines.number
FROM employees,landlines WHERE employees.id=? ORDER BY employees.last_name
正如您从 WHERE 条件中看到的,我正在使用固定电话表中的字段引用员工表中的字段。基本上是一个主键字段引用一个外键字段。相当标准的东西。
我的问题是使用PreparedStatement 类。我有一个使用如下所示的 switch case 的方法:
PreparedStatement statement = ...;
...
//wc is a WhereCondition object and getValue() returns an Object which I cast to a particular type
Field.Type value = wc.getKey().getFieldType();
switch (value)
{
case STRING:
statement.setString(index, ((String)wc.getValue()));
index++;
break;
case INT:
if(wc.getValue() instanceof Field)
{
Field fld = (Field)wc.getValue();
statement.setString(index,fld.toString());
}
else
statement.setInt(index, ((Integer)wc.getValue()));
index++;
break;
case FLOAT:
statement.setFloat(index, ((Float)wc.getValue()));
index++;
break;
case DOUBLE:
statement.setDouble(index, ((Double)wc.getValue()));
index++;
break;
case LONG:
statement.setLong(index, ((Long)wc.getValue()));
index++;
break;
case BIGDECIMAL:
statement.setBigDecimal(index, ((BigDecimal)wc.getValue()));
index++;
break;
case BOOLEAN:
statement.setBoolean(index, ((Boolean)wc.getValue()));
index++;
break;
case DATE:
//We don't want to use the setDate(...) method as it expects
//a java.sql.Date returned which doesn't allow for any time stamp.
//Let the database perform the conversion from String to Date type.
statement.setString(index, ((String)wc.getValue()));
index++;
break;
case DBFUNCTION:
statement.setString(index, ((String)wc.getValue()));
index++;
break;
case IMAGE:
statement.setString(index, ((String)wc.getValue()));
index++;
break;
}
如果你看看这个案例 INT,我试图通过测试 Field 类型来避免 ClassCastException,从而调用 statements.setString(index,fld.toString()。问题是我最终得到了一个 SQL 语句:如下所示的 WHERE 子句:
WHERE employees.id = 'landlines.emp_id'
那些讨厌的引号会阻止查询正确执行。有没有办法设置XXXX字段employees.id的参数(INT类型),以便landlines.emp_id可以在不添加引号的情况下输入?
最佳答案
这将 JOIN 与参数分开。我无法在您的环境中测试它,所以我不确定它是否正确,但它不需要引号:
SELECT CONCAT(e.first_name," ", e.last_name), l.number
FROM employees e
JOIN landlines l ON e.id=l.emp_id
WHERE e.id=? ORDER BY e.last_name
关于java - WHERE 子句问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34844884/
我试图从一些 sql 查询中获得一些额外的性能,这些查询在一个字段上有一个 where 子句,它是一个非唯一的非聚集索引,它也是表 A 中的一个外键。该外键是主键在表 B 上,是聚集索引。 我想知道的
当包含在 FOR 中时,应该如何编写此 WMIC 命令脚本中的命令? wmic service where (name="themes" and state="running") get 下面的代码不
请帮我理解如何订购 对over子句的影响。我已经阅读了 msdn 和一本书,但仍然误解了。 假设我们有这样的查询: SELECT Count(OrderID) over(Partition By Ye
参见如下SQL语句: SELECT datediff("d", MAX(invoice.date), Now) As Date_Diff , MAX(invoice.date) AS ma
不知何故,对我来说构建这样的查询有点困难:给我所有链接名称不为空的导航条目 $query = $this->db->get_where('navigation',array('linkname'!==
我一直在寻找这个,但没有发现任何特别的东西。 是否可以有一个像 ALL IN 一样的 SQL 查询?为了更好地解释,这是一个表结构。 Orders table OrderItem table (hav
SELECT DISTINCT Campaign_id FROM Impressions WHERE Date BETWEEN '2015-03-01' AND '2015-03-31' ; 上述查询
我尝试在 MyBatis 中遵循 if 子句并得到以下异常请帮助我确定这里的问题.. public class Student{ private Integer studId; private Str
很难说出这里要问什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或夸夸其谈,无法以目前的形式得到合理的回答。如需帮助澄清此问题以便重新打开,visit the help center . 关闭 1
我尝试在 MyBatis 中遵循 if 子句并得到以下异常请帮助我确定这里的问题.. public class Student{ private Integer studId; private Str
是否可以用 where in 子句做这样的事情,我需要使用 where in 查询以下数据。 select * FROM instructor AS i INNER JOIN teaches AS t
嗨,我怎样才能让这个查询工作。我想要一个关于 where 子句的条件,如果 @BACHNUMB = '',那么 WHERE 是 (h.sopnumbe = @SOPNUMBE) 否则 WHERE 是
我在 MVC3 项目中工作。我浏览了一段时间并尝试了几个示例,但无法正常工作。 我需要从 OrderForm 表中获取记录列表,其 DeptID 在我已经获得的另一个列表中。 我知道我需要使用 Con
select * from staff LEFT JOIN servicereservation on servicereservation.snic = staff.snic where servi
我正在尝试使用 MySQL 创建带有“WITH”子句的 View WITH authorRating(aname, rating) AS SELECT aname, AVG(quantity)
我正在尝试使用 MySQL 创建触发器,但遇到错误。限制是:用户不得对他或她同时销售的商品出价。 Create Trigger before_insert_bid Before Insert on B
我正在尝试在 PostgreSql 的 WHERE IN 子句中使用 split_part,如下所示。这里 Objcode 是 small int 类型,objection 可能像 1374,824,
这可能很简单,只是我太厚了 - 我试图阻止保留的元素在记录中被拾取,但只有当库存大于 0 时,我不知道该怎么做除非 "....WHERE blah blah AND (reserved = 0 OR
我总结了两个表中两列的行,即如下所示: SUM( tableA.age ) + sum( tableB.age) as 'Total Ages' 但在某些情况下,A表的结果为空,而B表的结果则不是。在
我写了一个查询,从出生日期字段开始计算出一个人的年龄,然后使用 AS age 创建一个年龄字段。 我的问题是,是否可以再次匹配那个年龄字段? 像这样, SELECT `candidates`.`can
我是一名优秀的程序员,十分优秀!