用户购买在线产品时将日期时间插入表中的SQL查询。 在我的项目中,我希望用户购买在线产品时修复数据和时间
insert into prod_ordr (order_date, order_time) values (current_date(), current_time())
select
c.buyer_id,
p.comp_name,
p.usr_address,
p.city,
p.state,
p.pincode,
p.contact_one,
c.prod_id,
c.qty,
c.prod_barter_val
from add_to_cart c join usr_profile p
on c.buyer_id = p.usr_id
where p.usr_email ='sunny@yahoo.com';