skip to Main Content

laravel 11 connect with mysql database

I want to connect with mysql database but here show the error like this at vendorlaravelframeworksrcIlluminateDatabaseConnection.php:813 809▕ $this->getName(), $query, $this->prepareBindings($bindings), $e 810▕ ); 811▕ } 812▕ ➜ 813▕ throw new QueryException( 814▕ $this->getName(), $query, $this->prepareBindings($bindings), $e 815▕ ); 816▕ }…

VIEW QUESTION

How do I add the same record in MySQL

How to add the same record in MySQL, like the same Lastname only. create table Person (Lastname varchar(15) primary key, Firstname varchar(15), Address varchar(30), Province varchar(30)); insert into Persons values ('Soriano', 'MamaMo', 'Sa tabi-tabi', 'Pangasinan'); ERROR 1062 (23000): Duplicate entry…

VIEW QUESTION
Back To Top
Search