skip to Main Content

Storing array data in the database in Laravel

I was trying to store array data in the database, I didn't get the error message and it doesn't store it in the database. Here is my code in the blade file <form method="post" action="{{route('CheckOut')}}" enctype="multipart/form-data"> @csrf <div class="container"> Name:…

VIEW QUESTION

MySQL join returns null

I have two tables that I'm trying to join on authors_2's authorID column and author_note's aaID column: Table authors_2: id | name | aaID | authorID 1 | jimmy | 11129 | 1734 2 | mike | 15813 | 2469…

VIEW QUESTION

Mysql – How to display the shortest name in a group?

My table looks like this: CREATE TABLE `character_unique` ( `id` int(11) NOT NULL, `name` varchar(256) NOT NULL, `category` varchar(64) DEFAULT NULL, `name_without_stop_words` varchar(320) DEFAULT NULL, `name_first_word_with_exception` varchar(320) DEFAULT NULL, `master` varchar(320) DEFAULT NULL, `nb_letter` int(11) DEFAULT NULL, `count` int(11) DEFAULT…

VIEW QUESTION

Mysql – Optimise query with 2x LEFT JOIN from same table

I have the following query: SELECT match_main.checked, match_main.match_main_id, match_main.updated, match_main.created FROM match_main LEFT JOIN match_team AS mt1 ON mt1.match_main_id = match_main.match_main_id AND mt1.team_number = 1 AND mt1.version_number = 0 LEFT JOIN match_team AS mt2 ON mt2.match_main_id = match_main.match_main_id AND mt2.team_number…

VIEW QUESTION
Back To Top
Search