当用户购买在线产品时,SQL查询将datetime插入表中

时间:2016-11-08 06:48:14

标签: mysql

用户购买在线产品时将日期时间插入表中的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';

1 个答案:

答案 0 :(得分:0)

您只需使用MySQL NOW() function即可