0
How to creat the SQL
table
7 ответов
+ 2
CREATE TABLE table_name (
column1 datatype,
column2 datatype,
column3 datatype,
....
);
+ 2
Take sql course its not hard, because the syntax are easy to remember
https://www.sololearn.com/Course/SQL/?ref=app
+ 1
This is psudo cord ...how to creating table?
+ 1
No, read the link we were provided
0
This is psudo cord ...how to creating table?
0
No, read the link we were provided
- 1
CREATE DATABASR ABANCE;
C REATE TABLE SUPPLIER(
SNO VARCHAR(255),
NAME VARCHAR(255),
STATUS-INT
CITY VARCHAR(255)
);
SELECT*FROM SUPPLIERI
INSERT INTO SUPPLIER(SNO,NAME,STATUS,CITY)
VALUES ('S1','TOM',30,'COLOMBO');