Answers for "how to add foreign keys in php myadmin"

PHP
3

phpmyadmin add foreign key

ALTER TABLE table_name
    ADD CONSTRAINT fk_foreign_key_name
    FOREIGN KEY (foreign_key_name)
    REFERENCES target_table(target_key_name);
Posted by: Guest on January-14-2021
1

how to make primary key and foreign key in phpmyadmin

go to phpmyadmin
 select a table
  go to structure
  select the column you want to make primary
  click on the primary written beside check all
Posted by: Guest on July-27-2021

Browse Popular Code Answers by Language