Insert data in database using PhpMyAdmin

Pubblicato il: 18 dicembre 2023
sul canale di: TY Edu-Knowledge
24
0

Insert data in a database using phpMyAdmin | phpmyadmin tutorial: how to insert data to a database in mysql phpmyadmin

In This video we are going to learn -
How to insert data into a database using PHPMyAdmin

Just copy and paste the below sql statements


/*----------------------------------------------------*/

/* Hello and welcome to my channel- TY EDU-KNOWLEDGE*/

/* copy and paste the below sql script*/


CREATE DATABASE employeedb;

USE employeedb;

CREATE TABLE employees (
id INT AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(255) NOT NULL,
email VARCHAR(255) NOT NULL
);

INSERT INTO employees (username, email) VALUES
('john_doe', 'john.doe@example.com'),
('jane_smith', 'jane.smith@example.com');


In questa pagina del sito puoi guardare il video online Insert data in database using PhpMyAdmin della durata di ore minuti seconda in buona qualità , che l'utente ha caricato TY Edu-Knowledge 18 dicembre 2023, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 24 volte e gli è piaciuto 0 spettatori. Buona visione!