[sql] Online auction system

Viewer

copydownloadembedprintName: Online auction system
  1. TO copy WITH indexes AND triggers do these 2 queries:
  2. CREATE TABLE `Seller` LIKE `Auction item`;
  3. INSERT `Seller` SELECT * FROM `Auction item`;
  4. TO copy just STRUCTURE AND DATA USE this one:
  5. CREATE TABLE `Seller` AS SELECT * FROM `Auction item`;
  6.  

Editor

You can edit this paste and save as new:


File Description
  • Online auction system
  • Paste Code
  • 21 Oct-2020
  • 253 Bytes
You can Share it: