Answers for "Creating aMySQL database and a table"

SQL
0

Creating aMySQL database and a table

create database org;
use org;
create table employee(
    emp_id int auto_increment,
    emp_name varchar(400),
    emp_address varchar(400),
    primary key (emp_id)
);
Posted by: Guest on March-16-2022

Code answers related to "Creating aMySQL database and a table"

Code answers related to "SQL"

Browse Popular Code Answers by Language