Computer Science, asked by soulgamer831, 1 month ago

SQL
1. Create a table s13 with 4 columns
rollno, name, address,
dob (write query + output)
2. Insert 2 rows in the table s13 (write query + output)
3. Display the data of your table s13(write query + output)​

Answers

Answered by aryansharma5civps
0

My answer can help you

Explanation:

First you have to create a database by clicking on qwery and you have to write create database which name you want. Then you have to click on the database 2 times and click on create table then in new table on the first then you have to make the table as you want. Then for inserting information you have to write this in the new qwery: create database ATM

SELECT *FROM Table_1

INSERT INTO Table_1 (NAMES) VALUES ('ADITYA'),('RAMU'),'RAMESH','RAJESH','RAJU')

INSERT INTO Table_1 (NAMES) VALUES ('AARAV')

update Table_1 set RS = 26756 where NAMES = 'RAJA'

INSERT INTO Table_1 (NAMES) VALUES (PRANJAL) this is the whole qwery.

Similar questions