Answers for "create table with in mysql"

SQL
0

create table mysql

CREATE TABLE IF NOT EXISTS `sys_user_details` (
    user_detail_id INT(11) AUTO_INCREMENT,
    user_id INT(11),
    name VARCHAR(100) NOT NULL,
    email VARCHAR(200) NOT NULL,
    education VARCHAR(100) DEFAULT NULL,
    skills VARCHAR(100) DEFAULT NULL,
    experience VARCHAR(100) DEFAULT NULL,
    CONSTRAINT PK_sys_user_details PRIMARY KEY (user_detail_id),
    CONSTRAINT FK_sys_user_details_user_id FOREIGN KEY (user_id)
    REFERENCES sys_user(user_id)
        ON UPDATE RESTRICT ON DELETE CASCADE
);
Posted by: Guest on June-18-2021
1

creating table in MySQL

#Assuming that there is a database called MyDatabase
#creates a table called TableName, with columns Name, Age, and Class
Use MyDatabase;
create table TableName(
  No. int primary key,
  Name varchar(50),
  Age int,
  Class varchar(15));
Posted by: Guest on April-20-2021

Code answers related to "create table with in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language