我可以合并一个运行 insert into 的 .sql 文件和一个在 2 列上创建虚拟数据的 Laravel 工厂播种器吗?
Posted
技术标签:
【中文标题】我可以合并一个运行 insert into 的 .sql 文件和一个在 2 列上创建虚拟数据的 Laravel 工厂播种器吗?【英文标题】:Can I merge an .sql file that runs insert into and a Laravel factory seeder that creates dummy data on 2 only columns? 【发布时间】:2021-09-22 12:09:21 【问题描述】:我有一个为 2 列创建虚拟数据的工厂文件:代码和条形码。但是,我想在运行工厂命令后运行一个替换数据的 .sql 文件。有了这个,我猜会发生合并,可能会删除一些记录,或者添加新记录。是否可以改为合并数据。喜欢自动映射?
这是我的 .sql 文件的内容:
-- phpMyAdmin SQL Dump
-- version 4.7.4
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 23, 2021 at 12:14 PM
-- Server version: 10.1.28-MariaDB
-- PHP Version: 7.1.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `db_zachmatic`
--
--
-- Dumping data for table `products`
--
REPLACE INTO `products` (`id`, `code`, `name`, `description`, `unit`, `cost`, `srp`, `supplier`, `qty_on_hand`, `category`, `delivery_date`, `created_at`) VALUES
(12, 'P-824830', 'magnum-v', '45/90-17 MV-360 tube type tires only', 'Pieces', '', '1246', 'HH All Ventures', 3, 'Tires', '', ''),
(13, 'P-232033', 'magnum-v', '50/100-17 MV-360 tube type tire only', 'Select Product ', '', '1246', 'HH All Ventures', 1, 'Tires', '', ''),
(14, 'P-73032309', 'magnum-v', '60/90-17 MV-360 Tube Type Tire Only', 'Pieces', '', '1341', 'HH All Ventures', 0, 'Tires', '', ''),
(15, 'P-0022252', 'magnum-v', '45/90-17 MV-329 Tube Type with Tube', 'Pieces', '', '1120', 'HH All Ventures', 9, 'Tires', '', ''),
(16, 'P-323694', 'magnum-v', '50/100-17 MV-329 tube type with tube', 'Select Product ', '', '1120', 'HH All Ventures', 0, 'Tires', '', ''),
(17, 'P-023202', 'magnum-v', '60/90-17 MV-329 tube type with tube', 'Pieces', '', '1499', 'HH All Ventures', 0, 'Tires', '', ''),
(18, 'P-4729320', 'magnum-v', '70/90-17 MV-329 tube type with tube', 'Pieces', '', '1678', 'HH All Ventures', 0, 'Tires', '', ''),
(19, 'P-3020323', 'magnum-v', '120/70-13 MV-119C Tubeless', 'Pieces', '', '1829', 'HH All Ventures', 5, 'Tires', '', ''),
(20, 'P-3220830', 'magnum-v', '130/70-13 MV-119C tubeless', 'Pieces', '', '2062', 'HH All Ventures', 0, 'Tires', '', ''),
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products` DROP COLUMN `id`;
ALTER TABLE `products` ADD COLUMN `id` INT AUTO_INCREMENT UNIQUE FIRST;
--
-- Drop `code` column to delete old barcodes
-- then re-add `code` column, then add `barcode` column
--
ALTER TABLE `products` DROP COLUMN `code`;
ALTER TABLE `products` ADD COLUMN code VARCHAR(255) AFTER id;
--
-- Drop `delivery_date` column to delete old column
-- then re-add `delivery_date` column, then add `barcode` column
--
ALTER TABLE `products` DROP COLUMN `delivery_date`;
ALTER TABLE `products` ADD COLUMN delivery_date DATETIME;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
然后是我的工厂文件:
<?php
namespace Database\Factories;
use App\Models\Product;
use Illuminate\Database\Eloquent\Factories\Factory;
use Picqer;
class ProductFactory extends Factory
/**
* The name of the factory's corresponding model.
*
* @var string
*/
protected $model = Product::class;
/**
* Define the model's default state.
*
* @return array
*/
public function definition()
$code = $this->faker->bothify('PHZM-##########');
$barcode = $this->generateBarcode($code);
return [
'code' => $code,
'barcode' => $barcode,
];
private function generateBarcode($code_to_convert)
$generator = new Picqer\Barcode\BarcodeGeneratorhtml();
$barcode = $generator->getBarcode($code_to_convert, $generator::TYPE_CODE_128, 1, 15);
return $barcode;
感谢任何帮助。
【问题讨论】:
【参考方案1】:感谢@alirezadp10 的指导!我已经设法通过遵循他的回答以及使用Update
查询而不是默认的Insert Into
作为custom
导出phpmyadmin 中的products
表来解决这个问题。
Screenshot: Export as Custom
-
然后取消选中以下:
Screenshot: Uncheck these settings
-
在
Function to use when dumping data
上选择更新
下拉菜单。
Screenshot: Select Update on the dropdown
-
然后按 Go。
在那之后,我刚刚使用 Sublime Text 3 中的一些正则表达式替换了字段值。 链接:Regular expression search replace in Sublime Text 2
并根据我的需要重命名这些字段。对于@alirezadp10 的回答,我已经运行php artisan db:seed
。
【讨论】:
【参考方案2】:我猜你必须创建播种器来运行这个脚本文件,如下所示:
<?php
use Illuminate\Database\Seeder;
class SqlFileSeeder extends Seeder
/**
* Run the database seeds.
*
* @return void
*/
public function run()
$path = public_path('sql/File.sql');
$sql = file_get_contents($path);
DB::unprepared($sql);
在您的工厂调用的另一个播种机中,您在调用工厂后也运行此播种机
<?php
use Illuminate\Database\Seeder;
class FooSeeder extends Seeder
/**
* Run the database seeds.
*
* @return void
*/
public function run()
Product::factory()->count(20)->create();
$this->call([SqlFileSeeder::class]);
【讨论】:
感谢这很好用!还有一个问题,是否可以合并来自这一行的保存数据:Product::factory()->count(20)->create();
和来自这一行的数据:$this->call([SqlFileSeeder::class]);
像factory()->count(20)->update();
这样的东西
不客气。这个方法在工厂类中不存在,所以你可能会自己做,但我建议放轻松,只要它有效。以上是关于我可以合并一个运行 insert into 的 .sql 文件和一个在 2 列上创建虚拟数据的 Laravel 工厂播种器吗?的主要内容,如果未能解决你的问题,请参考以下文章
INSERT INTO SELECT 很慢,但是单独运行时 INSERT 或 SELECT 很快
sqlserver 两个表差异合并 除了insert.. select.. 外还有啥最好的办法吗?