0% found this document useful (0 votes)
3 views1 page

Python Database Connectivity

The document outlines a training program covering MySQL operations such as querying, updating, and managing databases, as well as Python database connectivity and CRUD operations. It also introduces Django, focusing on its ORM, QuerySets, and the Model View Template architecture. The training includes practical project work and setting up a Django project environment.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Python Database Connectivity

The document outlines a training program covering MySQL operations such as querying, updating, and managing databases, as well as Python database connectivity and CRUD operations. It also introduces Django, focusing on its ORM, QuerySets, and the Model View Template architecture. The training includes practical project work and setting up a Django project environment.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Mysql where clause

Mysql order by
Mysql group by
Mysql update table
Mysql delete query
Mysql drop table and database
Mysql joins

Day 4:
Python Database connectivity
Create connection object
Create cursor
Execute CRUD Query
Project work

Pandas read_sql

DJANGO ORM & QUERYSETS

Understanding Django ORM


Django Queryset API
Methods that return new QuerySets
all(), filter(), order_by(), distinct(), values(), values_list()
Methods that do not return new QuerySets
get(), count(), create(), update(), delete()
Two or more QuerySets
union(), intersection(), difference(), AND(&), OR(|), Q objects
Field lookups
exact, iexact, contains, in, gt, gte, lt, lte, startswith, endswith, range

Day 5:

INTRODUCTION TO DJANGO
What is Django?
HTTP request and response
Django Model View Template architecture
Django installation
Virtual environment setup
Starting your First Django Project

DJANGO APP ARCHITECTURE


Django project environment

You might also like