Python Features | Python tutorial

python_tutorial

Installing and using Python- Download Python 3  from www.python.org  Now double click on the python installer to install the python. Start  Python editor IDLE  to create a python program from the start menu. Python Features- 1. Easy–to – learn. Python “Hello World “  Program: Type the following code in IDLE, and press F5 o execute. … Read more

DML Commands in SQL

DML Commands in SQL

DML Commands in SQL- This SQL Tutorial focuses on the SQL DML statements. DML (Data Manipulation Language) statements are the SQL, sublanguage that is used for data retrieval and manipulation. Using DML commands you can perform operations such as inserting new rows and updating and deleting the existing rows tables. Data manipulation language(DML Commands) is a core part of … Read more

DBMS Assignment-Level-1

DBMS_Assignment

Sample DBMS Assignment Create table Vendors as follows: Ven_id Ven_name Contact Street City Salary Dept_id 1 Ratna 9044670000 Rajiv Chowk Delhi 30000 A01 2 Anjali 9839780000 Vijay Nagar Kanpur 21000 A01 3 Rahul 9532890000 Model Town Delhi 35000 B02 4 Ankit 7522900000 Rajajipuram Lucknow 24500 C03 5 Sumit 7271000000 Ramadevi Kanpur 26000 B02 6 Kapil … Read more