ok i am very new to mysql so hope u guy could help me
to create a db in mysql what i always do is open up the phpmyadmin page and add new db from there , thats fine. But I got a code here :
CREATE TABLE subject_registerd (
no int primary key,
user_id int,
subject_code varchar(50),
UNIQUE (user_id, subject_code)
);
but how do i even open up the code to put this new code in ? been reading up the mysql manual but just getting confused 😕
using mysql 2.2.3 (i know its not the latest but at the moment thats what i have)
hope u could help