sql这个语句怎么写条件,小于2010-4-1的订单日期
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql这个语句怎么写条件,小于2010-4-1的订单日期相关的知识,希望对你有一定的参考价值。
查询订单表(orders)中订单日期(orders_Date)小于2010-4-1的订单日期,产品编码,产品价格,数量,小计(产品价格*订单数量)
参考技术A select orders_Date,Product_Code,Product_Price,Orders_Quantity ,Product_Price*Orders_Quantity "小计"from Orders
where to_char(Orders_Date) < to_char('2010-04-01','YYYY-MM-DD')
此对Oracle数据库 参考技术B select orders_date,product_code,prodect_price,orders_quantity,prodect_price*orders_quantity as '小计'
from orders where orders_date<'2010-4-1' 参考技术C select * from 表 where orders_Date< '2010-4-1 '本回答被提问者采纳
当查询条件不确定的时候,怎么写SQL 语句
根据要查询条件,跳转到不同的查询语句上,在要查询的地方,用%来进行模糊查询。这个判断一般用SELECT来选择。 参考技术A 只能获得页面的状态,然后拼接sql查询。
以上是关于sql这个语句怎么写条件,小于2010-4-1的订单日期的主要内容,如果未能解决你的问题,请参考以下文章