SlideShare a Scribd company logo
1 of 28
SQL Structured Query Language
SQL-Create table Create table table_name(column_name1 datatype, column_name2 datatype……) Eg: create table example (id int ,name varchar(10),address varchar(10)) Msg: Command(s) completed successfully.
SQL-Insert Values Insert into table_name(column1,column2,…..)values(values1,values2,…) Eg: insert into example (id,name,address) values(123,'xxxx','yyyyy') Msg: (1 row(s) affected)
SQL-Select Command select *from example Id     name  address 123	xxxxyyyyy 456	jjjjrrrr 456	iiiinnnn 567	eeeeffff
SQL-Alter Command Alter table table_name add or drop column_namedatatype Eg: alter table example add mobilenoint Msg: Command(s) completed successfully. Id     name address  mobileno 123	xxxxyyyyy     NULL 456	jjjjrrrr	      NULL 888	iiiinnnn	      NULL 567	eeeeffff	      NULL
SQL-Update Command Update table_name set column_name=new value where column_name=any value Eg: Update example set id=888 where name='iiiiβ€˜ Msg: (1 row(s) affected) Id      name address 123	xxxxyyyyy 456	jjjjrrrr 888	iiiinnnn 567	eeeeffff
SQL-Delete Command Delete  table_name where coition Eg: delete example where id=888 Msg: (1 row(s) affected) Id    name address mobileno 123	xxxxyyyyy     NULL 456	jjjjrrrr         NULL 567	eeeeffff	     NULL
SQL-Drop Command Drop table table_name Eg: drop table example Msg:Command(s) completed successfully.
SQL-Primary Key & Foreign Key  CREATE TABLE table_name (column1 datatype null/not null, column2 datatype null/not null,...CONSTRAINT constraint_name PRIMARY KEY (column1, column2, . column_n)); CREATE TABLE table_nameΒ (column1 datatype,Β  column2 datatype,Β column3 datatype,Β Β Primary Key (column_any),Β Foreign Key (Column_any) references Table_any(datatype));
SQL-Primary Key & foreign Key create table example (id intprimary key,namevarchar(10),address varchar(10)) AΒ primary keyΒ is used to unique and Not Null identify each row in the table. create table example2 (salary int,expamountint, id int references example(id)) A foreign keyΒ is a referential constraint between two tables.Β 
SQL-Primary Key & Foreign Key  Id     name address     123	rrrrtttt 369	klkliooo 456	iiiihhhh 7889	wswsweww Salary   expamount id 10000	4235	7889 12369	8526	456 12369	865	  456 65894	12589	123 Example (primary Key tale) Example2 (Foreign Key tale)
SQL-Primary Key & Foreign Key  select name,address,salary from example e,example2 e2 where e.id=e2.id O/P Name address    salary wswsweww	10000 iiiihhhh	12369 iiiihhhh 	12369 rrrrtttt	          65894
SQL-Connection String string strcon = "Data Source=172.16.0.1;Initial Catalog=BatchThree;User ID=magnum;Password=Magnum"; SqlConnectionsqlcon = new SqlConnection(strcon); sqlcon.Open(); stringstrsql = "insert into datab values 	('" + txtmarks1.Text + "','" + txtmarks2.Text + "','" + txtmarks3.Text + "','" + txtname.Text + "')"; SqlCommandcmd = new SqlCommand(strsql, sqlcon); cmd.CommandType = CommandType.Text; cmd.ExecuteNonQuery(); sqlcon.Close();
SQL-Connection String
SQL-Connection String
SQL-Connection String
SQL-Stored Procedure create procedure proexample(@id int,@namevarchar(10),@address varchar(10)) as insert into example(id,name,address) values (@id,@name,@address) Command(s) completed successfully. exec proexample 666,'hghg','yuyuβ€˜ (1 row(s) affected)
SQL-Stored Procedure select *from example Id    name address 123	rrrrtttt 369	klkliooo 456	iiiihhhh 666	hghgyuyu 7889	wswsweww
SQL-JOINS SQL joinsΒ are used to query data from two or more tables, based on a relationship between certain columns in these tables Inner Join Left Join Right Join Full Join
SQL-INNER JOIN The INNER JOIN keyword return rows when there is at least one match in both tables. SELECT column_name(s)FROM table_name1INNER JOIN table_name2ON table_name1.column_name=table_name2.column_name
SQL-INNER JOIN select name,address,salary from example inner join example2 on example.id=example2.id order by name Name address   salary iiiihhhh	12369 iiiihhhh	12369 rrrrtttt	          65894 Wswsweww	10000
SQL-LEFT JOIN The LEFT JOIN keyword returns all rows from the left table (table_name1), even if there are no matches in the right table (table_name2) SELECT column_name(s)FROM table_name1LEFT JOIN table_name2ON table_name1.column_name=table_name2.column_name
SQL_LEFT JOIN select name,address,salary from example left join example2 on example.id=example2.id order by name Name  address   salary hghgyuyu	NULL iiiihhhh	12369 iiiihhhh	12369 klkliooo	           NULL rrrrtttt      	65894 wswsweww         10000
SQL-RIGHT JOIN The RIGHT JOIN keyword returns all the rows from the right table (table_name2), even if there are no matches in the left table (table_name1) SELECT column_name(s)FROM table_name1RIGHT JOIN table_name2ON table_name1.column_name=table_name2.column_name
SQL_RIGHT JOIN select name,address,salary from example right join example2 on example.id=example2.id order by name Name address salary iiiihhhh     12369 iiiihhhh     12369 rrrrtttt	       65894 wswsweww   10000
SQL-FULL JOIN The FULL JOIN keyword return rows when there is a match in one of the tables. SELECT column_name(s)FROM table_name1FULL JOIN table_name2ON table_name1.column_name=table_name2.column_name
SQL-FULL JOIN select name,address,salary from example full join example2 on example.id=example2.id order by name Name address salary hghgyuyu	     NULL iiiihhhh	    12369 iiiihhhh	    12369 klkliooo       NULL rrrrtttt	    65894 wswsweww   10000
End) Prabhu.ftz@gmail.com

More Related Content

What's hot

Lecture 3 sql {basics ddl commands}
Lecture 3 sql {basics  ddl commands}Lecture 3 sql {basics  ddl commands}
Lecture 3 sql {basics ddl commands}Shubham Shukla
Β 
Lecture 4 sql {basics keys and constraints}
Lecture 4 sql {basics  keys and constraints}Lecture 4 sql {basics  keys and constraints}
Lecture 4 sql {basics keys and constraints}Shubham Shukla
Β 
Creating a Table from a Function
Creating a Table from a FunctionCreating a Table from a Function
Creating a Table from a Functiondmidgette
Β 
Python data structures
Python data structuresPython data structures
Python data structuresHarry Potter
Β 
[1062BPY12001] Data analysis with R / week 2
[1062BPY12001] Data analysis with R / week 2[1062BPY12001] Data analysis with R / week 2
[1062BPY12001] Data analysis with R / week 2Kevin Chun-Hsien Hsu
Β 
Артём Акуляков - F# for Data Analysis
Артём Акуляков - F# for Data AnalysisАртём Акуляков - F# for Data Analysis
Артём Акуляков - F# for Data AnalysisSpbDotNet Community
Β 
Most useful queries
Most useful queriesMost useful queries
Most useful queriesSam Depp
Β 
SQL Functions and Operators
SQL Functions and OperatorsSQL Functions and Operators
SQL Functions and OperatorsMohan Kumar.R
Β 
data constraints,group by
data constraints,group by data constraints,group by
data constraints,group by Visakh V
Β 
MY SQL
MY SQLMY SQL
MY SQLsundar
Β 
Rules of derivatives 2.2
Rules of derivatives 2.2Rules of derivatives 2.2
Rules of derivatives 2.2Lorie Blickhan
Β 
Db1 lecture4
Db1 lecture4Db1 lecture4
Db1 lecture4Sherif Gad
Β 

What's hot (15)

Lecture 3 sql {basics ddl commands}
Lecture 3 sql {basics  ddl commands}Lecture 3 sql {basics  ddl commands}
Lecture 3 sql {basics ddl commands}
Β 
Lecture 4 sql {basics keys and constraints}
Lecture 4 sql {basics  keys and constraints}Lecture 4 sql {basics  keys and constraints}
Lecture 4 sql {basics keys and constraints}
Β 
Creating a Table from a Function
Creating a Table from a FunctionCreating a Table from a Function
Creating a Table from a Function
Β 
Python data structures
Python data structuresPython data structures
Python data structures
Β 
[1062BPY12001] Data analysis with R / week 2
[1062BPY12001] Data analysis with R / week 2[1062BPY12001] Data analysis with R / week 2
[1062BPY12001] Data analysis with R / week 2
Β 
Артём Акуляков - F# for Data Analysis
Артём Акуляков - F# for Data AnalysisАртём Акуляков - F# for Data Analysis
Артём Акуляков - F# for Data Analysis
Β 
Most useful queries
Most useful queriesMost useful queries
Most useful queries
Β 
R for you
R for youR for you
R for you
Β 
mysqlHiep.ppt
mysqlHiep.pptmysqlHiep.ppt
mysqlHiep.ppt
Β 
SQL Functions and Operators
SQL Functions and OperatorsSQL Functions and Operators
SQL Functions and Operators
Β 
Sql
SqlSql
Sql
Β 
data constraints,group by
data constraints,group by data constraints,group by
data constraints,group by
Β 
MY SQL
MY SQLMY SQL
MY SQL
Β 
Rules of derivatives 2.2
Rules of derivatives 2.2Rules of derivatives 2.2
Rules of derivatives 2.2
Β 
Db1 lecture4
Db1 lecture4Db1 lecture4
Db1 lecture4
Β 

Viewers also liked

BCIT SOCAST - Students Working for industry
BCIT SOCAST - Students Working for industryBCIT SOCAST - Students Working for industry
BCIT SOCAST - Students Working for industryBCITAppliedResearch
Β 
Tables And SQL basics
Tables And SQL basicsTables And SQL basics
Tables And SQL basicsAmit Kumar Singh
Β 
My sql open source database in 2004
My sql open source database in 2004My sql open source database in 2004
My sql open source database in 2004Jayesh Baldania
Β 
MS SQL SERVER: Creating Views
MS SQL SERVER: Creating ViewsMS SQL SERVER: Creating Views
MS SQL SERVER: Creating Viewssqlserver content
Β 
SQL Tutorial - Table Constraints
SQL Tutorial - Table ConstraintsSQL Tutorial - Table Constraints
SQL Tutorial - Table Constraints1keydata
Β 
SQL Tutorial - How To Create, Drop, and Truncate Table
SQL Tutorial - How To Create, Drop, and Truncate TableSQL Tutorial - How To Create, Drop, and Truncate Table
SQL Tutorial - How To Create, Drop, and Truncate Table1keydata
Β 
MySQL For Oracle Developers
MySQL For Oracle DevelopersMySQL For Oracle Developers
MySQL For Oracle DevelopersRonald Bradford
Β 
SQL Tutorial for Marketers
SQL Tutorial for MarketersSQL Tutorial for Marketers
SQL Tutorial for MarketersJustin Mares
Β 
Introduction to Mysql
Introduction to MysqlIntroduction to Mysql
Introduction to MysqlTushar Chauhan
Β 
SQL Tutorial - Basic Commands
SQL Tutorial - Basic CommandsSQL Tutorial - Basic Commands
SQL Tutorial - Basic Commands1keydata
Β 
10 SQL Tricks that You Didn't Think Were Possible
10 SQL Tricks that You Didn't Think Were Possible10 SQL Tricks that You Didn't Think Were Possible
10 SQL Tricks that You Didn't Think Were PossibleLukas Eder
Β 
Sql ppt
Sql pptSql ppt
Sql pptAnuja Lad
Β 
Step by Step Installation of Microsoft SQL ServerΒ 2012
Step by Step Installation of Microsoft SQL ServerΒ 2012 Step by Step Installation of Microsoft SQL ServerΒ 2012
Step by Step Installation of Microsoft SQL ServerΒ 2012 Sameh AboulDahab
Β 
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...Beat Signer
Β 

Viewers also liked (18)

BCIT SOCAST - Students Working for industry
BCIT SOCAST - Students Working for industryBCIT SOCAST - Students Working for industry
BCIT SOCAST - Students Working for industry
Β 
My sql
 My sql My sql
My sql
Β 
Tables And SQL basics
Tables And SQL basicsTables And SQL basics
Tables And SQL basics
Β 
My sql open source database in 2004
My sql open source database in 2004My sql open source database in 2004
My sql open source database in 2004
Β 
MS SQL SERVER: Creating Views
MS SQL SERVER: Creating ViewsMS SQL SERVER: Creating Views
MS SQL SERVER: Creating Views
Β 
SQL Tutorial - Table Constraints
SQL Tutorial - Table ConstraintsSQL Tutorial - Table Constraints
SQL Tutorial - Table Constraints
Β 
SQL Tutorial - How To Create, Drop, and Truncate Table
SQL Tutorial - How To Create, Drop, and Truncate TableSQL Tutorial - How To Create, Drop, and Truncate Table
SQL Tutorial - How To Create, Drop, and Truncate Table
Β 
MySQL For Oracle Developers
MySQL For Oracle DevelopersMySQL For Oracle Developers
MySQL For Oracle Developers
Β 
SQL Tutorial for Marketers
SQL Tutorial for MarketersSQL Tutorial for Marketers
SQL Tutorial for Marketers
Β 
Mysql ppt
Mysql pptMysql ppt
Mysql ppt
Β 
Mysql Ppt
Mysql PptMysql Ppt
Mysql Ppt
Β 
Introduction to Mysql
Introduction to MysqlIntroduction to Mysql
Introduction to Mysql
Β 
SQL Basics
SQL BasicsSQL Basics
SQL Basics
Β 
SQL Tutorial - Basic Commands
SQL Tutorial - Basic CommandsSQL Tutorial - Basic Commands
SQL Tutorial - Basic Commands
Β 
10 SQL Tricks that You Didn't Think Were Possible
10 SQL Tricks that You Didn't Think Were Possible10 SQL Tricks that You Didn't Think Were Possible
10 SQL Tricks that You Didn't Think Were Possible
Β 
Sql ppt
Sql pptSql ppt
Sql ppt
Β 
Step by Step Installation of Microsoft SQL ServerΒ 2012
Step by Step Installation of Microsoft SQL ServerΒ 2012 Step by Step Installation of Microsoft SQL ServerΒ 2012
Step by Step Installation of Microsoft SQL ServerΒ 2012
Β 
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Structured Query Language (SQL) - Lecture 5 - Introduction to Databases (1007...
Β 

Similar to Sql

Mysql 120831075600-phpapp01
Mysql 120831075600-phpapp01Mysql 120831075600-phpapp01
Mysql 120831075600-phpapp01sagaroceanic11
Β 
SQL Class Note By Amit Maity PowerPoint Presentation
SQL Class Note By Amit Maity PowerPoint PresentationSQL Class Note By Amit Maity PowerPoint Presentation
SQL Class Note By Amit Maity PowerPoint Presentationmaitypradip938
Β 
Null values, insert, delete and update in database
Null values, insert, delete and update in databaseNull values, insert, delete and update in database
Null values, insert, delete and update in databaseHemant Suthar
Β 
06.01 sql select distinct
06.01 sql select distinct06.01 sql select distinct
06.01 sql select distinctBishal Ghimire
Β 
Structured query language(sql)
Structured query language(sql)Structured query language(sql)
Structured query language(sql)Huda Alameen
Β 
MySQL Database System Hiep Dinh
MySQL Database System Hiep DinhMySQL Database System Hiep Dinh
MySQL Database System Hiep Dinhwebhostingguy
Β 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL CommandsShrija Madhu
Β 
Introduction sql
Introduction sqlIntroduction sql
Introduction sqlsagarasuri
Β 
dbms lab manual
dbms lab manualdbms lab manual
dbms lab manualstalinjothi
Β 
Postgresql 9.3 overview
Postgresql 9.3 overviewPostgresql 9.3 overview
Postgresql 9.3 overviewAveic
Β 
Sql insert statement
Sql insert statementSql insert statement
Sql insert statementVivek Singh
Β 
Database Management System 1
Database Management System 1Database Management System 1
Database Management System 1Swapnali Pawar
Β 
Oracle basic queries
Oracle basic queriesOracle basic queries
Oracle basic queriesPRAKHAR JHA
Β 
DDL(Data defination Language ) Using Oracle
DDL(Data defination Language ) Using OracleDDL(Data defination Language ) Using Oracle
DDL(Data defination Language ) Using OracleFarhan Aslam
Β 

Similar to Sql (20)

Mysql 120831075600-phpapp01
Mysql 120831075600-phpapp01Mysql 120831075600-phpapp01
Mysql 120831075600-phpapp01
Β 
dbms.pdf
dbms.pdfdbms.pdf
dbms.pdf
Β 
Commands
CommandsCommands
Commands
Β 
SQL Class Note By Amit Maity PowerPoint Presentation
SQL Class Note By Amit Maity PowerPoint PresentationSQL Class Note By Amit Maity PowerPoint Presentation
SQL Class Note By Amit Maity PowerPoint Presentation
Β 
Oraclesql
OraclesqlOraclesql
Oraclesql
Β 
SQL
SQLSQL
SQL
Β 
Sql
SqlSql
Sql
Β 
Null values, insert, delete and update in database
Null values, insert, delete and update in databaseNull values, insert, delete and update in database
Null values, insert, delete and update in database
Β 
06.01 sql select distinct
06.01 sql select distinct06.01 sql select distinct
06.01 sql select distinct
Β 
Structured query language(sql)
Structured query language(sql)Structured query language(sql)
Structured query language(sql)
Β 
MySQL Database System Hiep Dinh
MySQL Database System Hiep DinhMySQL Database System Hiep Dinh
MySQL Database System Hiep Dinh
Β 
SQL - DML and DDL Commands
SQL - DML and DDL CommandsSQL - DML and DDL Commands
SQL - DML and DDL Commands
Β 
Introduction sql
Introduction sqlIntroduction sql
Introduction sql
Β 
dbms lab manual
dbms lab manualdbms lab manual
dbms lab manual
Β 
Postgresql 9.3 overview
Postgresql 9.3 overviewPostgresql 9.3 overview
Postgresql 9.3 overview
Β 
Sql insert statement
Sql insert statementSql insert statement
Sql insert statement
Β 
Database Management System 1
Database Management System 1Database Management System 1
Database Management System 1
Β 
Unit_9.pptx
Unit_9.pptxUnit_9.pptx
Unit_9.pptx
Β 
Oracle basic queries
Oracle basic queriesOracle basic queries
Oracle basic queries
Β 
DDL(Data defination Language ) Using Oracle
DDL(Data defination Language ) Using OracleDDL(Data defination Language ) Using Oracle
DDL(Data defination Language ) Using Oracle
Β 

Recently uploaded

Call girls Service in Deira 0507330913 Deira Call girls
Call girls Service in Deira 0507330913 Deira Call girlsCall girls Service in Deira 0507330913 Deira Call girls
Call girls Service in Deira 0507330913 Deira Call girlsMonica Sydney
Β 
Hire πŸ’• 8617370543 Khalilabad Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Khalilabad Call Girls Service Call Girls AgencyHire πŸ’• 8617370543 Khalilabad Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Khalilabad Call Girls Service Call Girls AgencyNitya salvi
Β 
Turbhe Female Escorts 09167354423 Turbhe Escorts,Call Girls In Turbhe
Turbhe Female Escorts 09167354423  Turbhe Escorts,Call Girls In TurbheTurbhe Female Escorts 09167354423  Turbhe Escorts,Call Girls In Turbhe
Turbhe Female Escorts 09167354423 Turbhe Escorts,Call Girls In TurbhePriya Reddy
Β 
Hire πŸ’• 8617370543 Auraiya Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Auraiya Call Girls Service Call Girls AgencyHire πŸ’• 8617370543 Auraiya Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Auraiya Call Girls Service Call Girls AgencyNitya salvi
Β 
Unnao πŸ’‹ Call Girl 8617370543 Call Girls in unnao Escort service book now
Unnao πŸ’‹ Call Girl 8617370543 Call Girls in unnao Escort service book nowUnnao πŸ’‹ Call Girl 8617370543 Call Girls in unnao Escort service book now
Unnao πŸ’‹ Call Girl 8617370543 Call Girls in unnao Escort service book nowNitya salvi
Β 
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...call girls kolkata
Β 
Call Girls In Gandhinagar πŸ“ž 8617370543 At Low Cost Cash Payment Booking
Call Girls In Gandhinagar πŸ“ž 8617370543  At Low Cost Cash Payment BookingCall Girls In Gandhinagar πŸ“ž 8617370543  At Low Cost Cash Payment Booking
Call Girls In Gandhinagar πŸ“ž 8617370543 At Low Cost Cash Payment BookingNitya salvi
Β 
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...call girls kolkata
Β 
Dubai Call girls Service 0524076003 Call girls services in Dubai
Dubai Call girls Service 0524076003 Call girls services in DubaiDubai Call girls Service 0524076003 Call girls services in Dubai
Dubai Call girls Service 0524076003 Call girls services in DubaiMonica Sydney
Β 
Hire πŸ’• 8617370543 Mirzapur Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Mirzapur Call Girls Service Call Girls AgencyHire πŸ’• 8617370543 Mirzapur Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Mirzapur Call Girls Service Call Girls AgencyNitya salvi
Β 
Haridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Haridwar Call Girls, 8699214473 Hot Girls Service HaridwarHaridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Haridwar Call Girls, 8699214473 Hot Girls Service Haridwarranekokila
Β 
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Moradabad Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service AvailableNitya salvi
Β 
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdf
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdfTop IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdf
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdfXtreame HDTV
Β 
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...call girls kolkata
Β 
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...call girls kolkata
Β 
Deira Call girl agency 0567006274 Call girls in Deira
Deira Call girl agency 0567006274 Call girls in DeiraDeira Call girl agency 0567006274 Call girls in Deira
Deira Call girl agency 0567006274 Call girls in DeiraMonica Sydney
Β 
Genuine 8617370543 Hot and Beautiful πŸ’• Gomati Escorts call Girls
Genuine 8617370543 Hot and Beautiful πŸ’• Gomati Escorts call GirlsGenuine 8617370543 Hot and Beautiful πŸ’• Gomati Escorts call Girls
Genuine 8617370543 Hot and Beautiful πŸ’• Gomati Escorts call GirlsNitya salvi
Β 
Pakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girlsPakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girlsMonica Sydney
Β 
Bhubaneswar🌹Patia ❀CALL GIRLS 9777949614 πŸ’Ÿ CALL GIRLS IN bhubaneswar ESCORT S...
Bhubaneswar🌹Patia ❀CALL GIRLS 9777949614 πŸ’Ÿ CALL GIRLS IN bhubaneswar ESCORT S...Bhubaneswar🌹Patia ❀CALL GIRLS 9777949614 πŸ’Ÿ CALL GIRLS IN bhubaneswar ESCORT S...
Bhubaneswar🌹Patia ❀CALL GIRLS 9777949614 πŸ’Ÿ CALL GIRLS IN bhubaneswar ESCORT S...Call Girls Mumbai
Β 
Vip Call Girls Bhubaneswar πŸ±β€πŸ 9777949614 Independent Escorts Service Bhubane...
Vip Call Girls Bhubaneswar πŸ±β€πŸ 9777949614 Independent Escorts Service Bhubane...Vip Call Girls Bhubaneswar πŸ±β€πŸ 9777949614 Independent Escorts Service Bhubane...
Vip Call Girls Bhubaneswar πŸ±β€πŸ 9777949614 Independent Escorts Service Bhubane...Call Girls Mumbai
Β 

Recently uploaded (20)

Call girls Service in Deira 0507330913 Deira Call girls
Call girls Service in Deira 0507330913 Deira Call girlsCall girls Service in Deira 0507330913 Deira Call girls
Call girls Service in Deira 0507330913 Deira Call girls
Β 
Hire πŸ’• 8617370543 Khalilabad Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Khalilabad Call Girls Service Call Girls AgencyHire πŸ’• 8617370543 Khalilabad Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Khalilabad Call Girls Service Call Girls Agency
Β 
Turbhe Female Escorts 09167354423 Turbhe Escorts,Call Girls In Turbhe
Turbhe Female Escorts 09167354423  Turbhe Escorts,Call Girls In TurbheTurbhe Female Escorts 09167354423  Turbhe Escorts,Call Girls In Turbhe
Turbhe Female Escorts 09167354423 Turbhe Escorts,Call Girls In Turbhe
Β 
Hire πŸ’• 8617370543 Auraiya Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Auraiya Call Girls Service Call Girls AgencyHire πŸ’• 8617370543 Auraiya Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Auraiya Call Girls Service Call Girls Agency
Β 
Unnao πŸ’‹ Call Girl 8617370543 Call Girls in unnao Escort service book now
Unnao πŸ’‹ Call Girl 8617370543 Call Girls in unnao Escort service book nowUnnao πŸ’‹ Call Girl 8617370543 Call Girls in unnao Escort service book now
Unnao πŸ’‹ Call Girl 8617370543 Call Girls in unnao Escort service book now
Β 
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...
Call Girls Rajnandgaon / 9332606886 Genuine Call girls with real Photos and N...
Β 
Call Girls In Gandhinagar πŸ“ž 8617370543 At Low Cost Cash Payment Booking
Call Girls In Gandhinagar πŸ“ž 8617370543  At Low Cost Cash Payment BookingCall Girls In Gandhinagar πŸ“ž 8617370543  At Low Cost Cash Payment Booking
Call Girls In Gandhinagar πŸ“ž 8617370543 At Low Cost Cash Payment Booking
Β 
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Call Girls in Perumbavoor / 9332606886 Genuine Call girls with real Photos an...
Β 
Dubai Call girls Service 0524076003 Call girls services in Dubai
Dubai Call girls Service 0524076003 Call girls services in DubaiDubai Call girls Service 0524076003 Call girls services in Dubai
Dubai Call girls Service 0524076003 Call girls services in Dubai
Β 
Hire πŸ’• 8617370543 Mirzapur Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Mirzapur Call Girls Service Call Girls AgencyHire πŸ’• 8617370543 Mirzapur Call Girls Service Call Girls Agency
Hire πŸ’• 8617370543 Mirzapur Call Girls Service Call Girls Agency
Β 
Haridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Haridwar Call Girls, 8699214473 Hot Girls Service HaridwarHaridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Haridwar Call Girls, 8699214473 Hot Girls Service Haridwar
Β 
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service AvailableCall Girls Moradabad Just Call 8617370543 Top Class Call Girl Service Available
Call Girls Moradabad Just Call 8617370543 Top Class Call Girl Service Available
Β 
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdf
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdfTop IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdf
Top IPTV Subscription Service to Stream Your Favorite Shows in 2024.pdf
Β 
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...
Call Girls in Kollam - 9332606886 Our call girls are sure to provide you with...
Β 
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...
Call Girls Kozhikode - 9332606886 Our call girls are sure to provide you with...
Β 
Deira Call girl agency 0567006274 Call girls in Deira
Deira Call girl agency 0567006274 Call girls in DeiraDeira Call girl agency 0567006274 Call girls in Deira
Deira Call girl agency 0567006274 Call girls in Deira
Β 
Genuine 8617370543 Hot and Beautiful πŸ’• Gomati Escorts call Girls
Genuine 8617370543 Hot and Beautiful πŸ’• Gomati Escorts call GirlsGenuine 8617370543 Hot and Beautiful πŸ’• Gomati Escorts call Girls
Genuine 8617370543 Hot and Beautiful πŸ’• Gomati Escorts call Girls
Β 
Pakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girlsPakistani Call girls in Deira 0567006274 Deira Call girls
Pakistani Call girls in Deira 0567006274 Deira Call girls
Β 
Bhubaneswar🌹Patia ❀CALL GIRLS 9777949614 πŸ’Ÿ CALL GIRLS IN bhubaneswar ESCORT S...
Bhubaneswar🌹Patia ❀CALL GIRLS 9777949614 πŸ’Ÿ CALL GIRLS IN bhubaneswar ESCORT S...Bhubaneswar🌹Patia ❀CALL GIRLS 9777949614 πŸ’Ÿ CALL GIRLS IN bhubaneswar ESCORT S...
Bhubaneswar🌹Patia ❀CALL GIRLS 9777949614 πŸ’Ÿ CALL GIRLS IN bhubaneswar ESCORT S...
Β 
Vip Call Girls Bhubaneswar πŸ±β€πŸ 9777949614 Independent Escorts Service Bhubane...
Vip Call Girls Bhubaneswar πŸ±β€πŸ 9777949614 Independent Escorts Service Bhubane...Vip Call Girls Bhubaneswar πŸ±β€πŸ 9777949614 Independent Escorts Service Bhubane...
Vip Call Girls Bhubaneswar πŸ±β€πŸ 9777949614 Independent Escorts Service Bhubane...
Β 

Sql

  • 2. SQL-Create table Create table table_name(column_name1 datatype, column_name2 datatype……) Eg: create table example (id int ,name varchar(10),address varchar(10)) Msg: Command(s) completed successfully.
  • 3. SQL-Insert Values Insert into table_name(column1,column2,…..)values(values1,values2,…) Eg: insert into example (id,name,address) values(123,'xxxx','yyyyy') Msg: (1 row(s) affected)
  • 4. SQL-Select Command select *from example Id name address 123 xxxxyyyyy 456 jjjjrrrr 456 iiiinnnn 567 eeeeffff
  • 5. SQL-Alter Command Alter table table_name add or drop column_namedatatype Eg: alter table example add mobilenoint Msg: Command(s) completed successfully. Id name address mobileno 123 xxxxyyyyy NULL 456 jjjjrrrr NULL 888 iiiinnnn NULL 567 eeeeffff NULL
  • 6. SQL-Update Command Update table_name set column_name=new value where column_name=any value Eg: Update example set id=888 where name='iiiiβ€˜ Msg: (1 row(s) affected) Id name address 123 xxxxyyyyy 456 jjjjrrrr 888 iiiinnnn 567 eeeeffff
  • 7. SQL-Delete Command Delete table_name where coition Eg: delete example where id=888 Msg: (1 row(s) affected) Id name address mobileno 123 xxxxyyyyy NULL 456 jjjjrrrr NULL 567 eeeeffff NULL
  • 8. SQL-Drop Command Drop table table_name Eg: drop table example Msg:Command(s) completed successfully.
  • 9. SQL-Primary Key & Foreign Key CREATE TABLE table_name (column1 datatype null/not null, column2 datatype null/not null,...CONSTRAINT constraint_name PRIMARY KEY (column1, column2, . column_n)); CREATE TABLE table_nameΒ (column1 datatype,Β  column2 datatype,Β column3 datatype,Β Β Primary Key (column_any),Β Foreign Key (Column_any) references Table_any(datatype));
  • 10. SQL-Primary Key & foreign Key create table example (id intprimary key,namevarchar(10),address varchar(10)) AΒ primary keyΒ is used to unique and Not Null identify each row in the table. create table example2 (salary int,expamountint, id int references example(id)) A foreign keyΒ is a referential constraint between two tables.Β 
  • 11. SQL-Primary Key & Foreign Key Id name address 123 rrrrtttt 369 klkliooo 456 iiiihhhh 7889 wswsweww Salary expamount id 10000 4235 7889 12369 8526 456 12369 865 456 65894 12589 123 Example (primary Key tale) Example2 (Foreign Key tale)
  • 12. SQL-Primary Key & Foreign Key select name,address,salary from example e,example2 e2 where e.id=e2.id O/P Name address salary wswsweww 10000 iiiihhhh 12369 iiiihhhh 12369 rrrrtttt 65894
  • 13. SQL-Connection String string strcon = "Data Source=172.16.0.1;Initial Catalog=BatchThree;User ID=magnum;Password=Magnum"; SqlConnectionsqlcon = new SqlConnection(strcon); sqlcon.Open(); stringstrsql = "insert into datab values ('" + txtmarks1.Text + "','" + txtmarks2.Text + "','" + txtmarks3.Text + "','" + txtname.Text + "')"; SqlCommandcmd = new SqlCommand(strsql, sqlcon); cmd.CommandType = CommandType.Text; cmd.ExecuteNonQuery(); sqlcon.Close();
  • 17. SQL-Stored Procedure create procedure proexample(@id int,@namevarchar(10),@address varchar(10)) as insert into example(id,name,address) values (@id,@name,@address) Command(s) completed successfully. exec proexample 666,'hghg','yuyuβ€˜ (1 row(s) affected)
  • 18. SQL-Stored Procedure select *from example Id name address 123 rrrrtttt 369 klkliooo 456 iiiihhhh 666 hghgyuyu 7889 wswsweww
  • 19. SQL-JOINS SQL joinsΒ are used to query data from two or more tables, based on a relationship between certain columns in these tables Inner Join Left Join Right Join Full Join
  • 20. SQL-INNER JOIN The INNER JOIN keyword return rows when there is at least one match in both tables. SELECT column_name(s)FROM table_name1INNER JOIN table_name2ON table_name1.column_name=table_name2.column_name
  • 21. SQL-INNER JOIN select name,address,salary from example inner join example2 on example.id=example2.id order by name Name address salary iiiihhhh 12369 iiiihhhh 12369 rrrrtttt 65894 Wswsweww 10000
  • 22. SQL-LEFT JOIN The LEFT JOIN keyword returns all rows from the left table (table_name1), even if there are no matches in the right table (table_name2) SELECT column_name(s)FROM table_name1LEFT JOIN table_name2ON table_name1.column_name=table_name2.column_name
  • 23. SQL_LEFT JOIN select name,address,salary from example left join example2 on example.id=example2.id order by name Name address salary hghgyuyu NULL iiiihhhh 12369 iiiihhhh 12369 klkliooo NULL rrrrtttt 65894 wswsweww 10000
  • 24. SQL-RIGHT JOIN The RIGHT JOIN keyword returns all the rows from the right table (table_name2), even if there are no matches in the left table (table_name1) SELECT column_name(s)FROM table_name1RIGHT JOIN table_name2ON table_name1.column_name=table_name2.column_name
  • 25. SQL_RIGHT JOIN select name,address,salary from example right join example2 on example.id=example2.id order by name Name address salary iiiihhhh 12369 iiiihhhh 12369 rrrrtttt 65894 wswsweww 10000
  • 26. SQL-FULL JOIN The FULL JOIN keyword return rows when there is a match in one of the tables. SELECT column_name(s)FROM table_name1FULL JOIN table_name2ON table_name1.column_name=table_name2.column_name
  • 27. SQL-FULL JOIN select name,address,salary from example full join example2 on example.id=example2.id order by name Name address salary hghgyuyu NULL iiiihhhh 12369 iiiihhhh 12369 klkliooo NULL rrrrtttt 65894 wswsweww 10000