我需要打印列的最后一个值。在rails中是否有任何代码?
SELECT LAST(column_name) FROM table_name;
答案 0 :(得分:1)
<beans:bean id="contextSource"
class="org.springframework.security.ldap.DefaultSpringSecurityContextSource">
<beans:constructor-arg value="${host}" />
<beans:property name="base" value="" />
<beans:property name="userDn" value="${userDN}" />
**<beans:property name="password" value="#{Decrypt.decrypt('${password}')}" />**
答案 1 :(得分:0)
Model.last.column_name
这样可行。
如果您只想显示最近的数量,则无需遍历所有stock_availabilities
只需获取最后一个并打印qty
,如下所示:
d.stock_availabilities.last.qty
将显示最后的数量。