Ad Code

Are the queries Correct or not ?

These sql statements are correct? 
CREATE TABLE STUDENT(emp-salary int)
CREATE TABLE (emp-id int Primary Key)



Correct Queries are below

CREATE TABLE STUDENT(emp_salary int);  
//Table Student woul be created....always use underscore( _ ) for column names


CREATE TABLE Empoyee (emp_id int Primary Key);
Reactions

Post a Comment

0 Comments