SlideShare a Scribd company logo
# MySQL is a relational database management system (RDBMS).  MySQL is currently the most popular open source database server in existence.  # A relational database management system which runs a server, providing multi-user access to a number of databases. # SQL (Structured Query Language) is a standard interactive and programming language for getting information from and updating a database.  MY SQL
# Structured Query Langauge is cross between a math-like language and an English-like language that allows us to ask a database questions or tell it do do things. For example: SELECT * FROM table; Where 'SELECT', 'FROM' and 'table' are in English, but '*' is a symbol that means all.
*USES: Many web applications use MySQL as the database component of a  LAMP  software stack.
  Its popularity for use with web applications is closely tied to the popularity of  PHP , which is often combined with MySQL.
Several high-traffic web sites including  Flickr, Facebook, Wikipedia, Google, Nokia and YouTube  use MySQL for data storage and logging of user data.
CREATE Command - is used to  create  a database/table. SELECT Command - is used to  retrieve  data from the database.
DELETE Command - is used to  delete  data from the database.
INSERT Command - is used to  insert  data into a database.
UPDATE Command - is used to  update  the data in a table.
DROP Command - is used to  delete or drop  the database/table.  . BASIC QUERIES COMMANDS
CREATE Command : The Create command is used to create a table by specifying the tablename, fieldnames and constraints. Syntax: $createSQL=("CREATE TABLE tblName"); Example: $createSQL=("CREATE TABLE tblstudent(fldstudid int(10) NOTNULL AUTO_INCREMENT PRIMARY KEY,fldstudName VARCHAR(250) NOTNULL,fldstudentmark int(4) DEFAULT '0' ");
SELECT Command: The Select command is used to select the records from a table using its field names. To select all the fields in a table, '*' is used in the command.  Syntax: $selectSQL=("SELECT field_names FROM tablename"); Example: $selectSQL=("SELECT * FROM tblstudent");
DELETE Comman d: The Delete command is used to delete the records from a table using conditions as shown below: Syntax: $deleteSQL=("DELETE * FROM tablename WHERE condition"); Example: $deleteSQL=("DELETE * FROM tblstudent WHERE fldstudid=2");
INSERT Command: The Insert command is used to insert records into a table. The values are assigned to the field names as shown below: Syntax : $insertSQL=("INSERT INTO tblname(fieldname1,fieldname2..) VALUES(value1,value2,...) "); Example: $insertSQL=("INSERT INTO Tblstudent(fldstudName,fldstudmark)VALUES(Baskar,75) ");
UPDATE Command: The Update command is used to update the field values using conditions. This is done using 'SET' and the fieldnames to assign new values to them. Syntax: $updateSQL=("UPDATE Tblname SET (fieldname1=value1,fieldname2=value2,...) WHERE fldstudid=IdNumber"); Example :$updateSQL=("UPDATE Tblstudent SET (fldstudName=siva,fldstudmark=100) WHERE fldstudid=2");
DROP Command: The Drop command is used to delete all the records in a table using the table name as shown below:  Syntax: $dropSQL=("DROP tblName"); Example : $dropSQL=("DROP tblstudent");
Advanced functions and queries that can be useful when building more complex applications. *INNER JOIN: INNER JOIN is used to retrieve the data from all tables listed based on condition listed after keyword ON. If the condition is not meet, nothing is returned.  For Eg:  We have employees table and offices table. Two tables are linked together by the column officeCode.  ADVANCED QUERIES
To find out who is in which country and state we can use INNER JOIN to join these tables. Here is the SQL code: SELECT employees.firstname, employees.lastname, offices.country, offices.state FROM employees INNER JOIN offices  ON offices.officeCode = employees.officeCode
REPLACE: The REPLACE function searches a character string and replaces characters found in search string with characters listed in replacement Str.  Syntax : REPLACE(character_string,search_string, replacement_string) * character_string ->the string to be searched. * search_string -> the string of one or more characters to be found in chr String.  *  replacement_string ->the string that replaces any occurrences of search_string that are found in character_string.
Example: R eplaces hyphens (dashes) found in a person’s phone number with periods. SELECT PERSON_PHONE, REPLACE(PERSON_PHONE,'-','.') AS  DISPLAY_PHONE  FROM PERSON; PERSON_PHONE  DISPLAY_PHONE ---------------  --------------- 230-229-8976  230.229.8976 401-617-7297  401.617.7297
LTRIM  The LTRIM function removes any leading (left-hand) spaces in a character string.Only leading spaces are removed—embedded and trailing spaces are left in the string.  Eg: LTRIM (' String with spaces ') Returns this string: 'String with spaces '
RTRIM The RTRIM function works like LTRIM, but it removes trailing spaces. If we need to remove both leading and trailing spaces, you can nest LTRIM and RTRIM like this: Eg:RTRIM(LTRIM (' String with spaces ')) Returns this string: 'String with spaces'
SIGN  The SIGN function takes in a numeric expression and returns one of the following values based on the sign of the input number: Return Value   Meaning − 1 Input number is negative   0 Input number is zero   1 Input number is positive Null Input number is null
Eg :SELECT LATE_OR_LOSS_FEE, SIGN(LATE_OR_LOSS_FEE) AS FEE_SIGN FROM MOVIE_RENTAL WHERE LATE_OR_LOSS_FEE IS NOT NULL; LATE_OR_LOSS_FEE FEE_SIGN  29.99  1   4  1   4  1   29.98  1
SQRT  The SQRT function takes in a single numeric expression and returns its square root. The general syntax is  SQRT (numeric_expression) The result is a bit meaningless, but let’s take the square root of the non-null Late or Loss Fees we just looked at:
SELECT LATE_OR_LOSS_FEE,         SQRT(LATE_OR_LOSS_FEE) AS FEE_SQRT    FROM MOVIE_RENTAL   WHERE LATE_OR_LOSS_FEE IS NOT NULL; LATE_OR_LOSS_FEE    FEE_SQRT ----------------  ----------             29.99  5.47631263                 4           2                 4           2             29.98  5.47539953
*CEILING (CEIL)  The CEILING function returns the smallest integer that is greater than or equal to the value of the numeric expression provided as an input parameter. In other words, it  rounds up to the next nearest whole number.
As an example,  SELECT LATE_OR_LOSS_FEE, CEILING(LATE_OR_LOSS_FEE) AS FEE_CEILING FROM MOVIE_RENTAL WHERE LATE_OR_LOSS_FEE IS NOT NULL; LATE_OR_LOSS_FEE  FEE_CEILING 4.00  4 4.00  4 29.99  30
FLOOR  The FLOOR function is the  logical opposite of the CEILING function —it returns the integer that is less than or equal to the value of the numeric expression provided as an input parameter. In other words,  it rounds down to the next nearest whole number.
Example showing FLOOR applied to Late or Loss SELECT LATE_OR_LOSS_FEE,         FLOOR(LATE_OR_LOSS_FEE) AS FEE_FLOOR    FROM MOVIE_RENTAL   WHERE LATE_OR_LOSS_FEE IS NOT NULL; LATE_OR_LOSS_FEE  FEE_FLOOR              4.00          4             29.99         29             29.98         29
Date and Time: Function   Purpose   Input Parameters ADD_MONTHS   Adds the supplied number of months to the supplied date   date, number  ofmonths (positive or  negative value) CURRENT_DATE   Returns the current date in the time zone set for the None   database session EXTRACT  Extracts the specified datetime field from the supplied date  datetime field  keyword, date LAST_DAY    Returns the supplied date with the day shifted to the last day  date   of the month
A stored procedure is a procedure (like a subprogram in a regular computing language) that is stored (in the database).
MySQL supports "routines" and there are two kinds of routines: stored procedures  or functions whose return values we use in other SQL statements.
A stored procedure has a name, a parameter list, and an SQL statement, which can contain many more SQL statements. PROCEDURES
CREATE PROCEDURE Syntax: The general syntax of Creating a Stored Procedure is : CREATE PROCEDURE proc_name ([proc_parameter[......]]) routine_body *proc_name : procedure name *proc_parameter : [ IN | OUT | INOUT ]  param_name type *routine_body : Valid SQL procedure statement *An IN parameter is used to pass the value into a procedure. *An INOUT parameter is initialized by the caller and it can be modified by the  procedure.
Functions can return string, integer, or real values and can accept arguments of those same types.
We can define simple functions that operate on a single row at a time, or aggregate functions that operate on groups of rows.

More Related Content

ODP
Mysqlppt
poornima sugumaran
 
ODP
Mysqlppt
poornima sugumaran
 
ODP
Mysql1
rajikaa
 
PPT
Single row functions
Balqees Al.Mubarak
 
PPT
MYSQL
ARJUN
 
PPT
Les10
arnold 7490
 
PPT
Les03
arnold 7490
 
PPT
Oracle tips and tricks
Yanli Liu
 
Mysql1
rajikaa
 
Single row functions
Balqees Al.Mubarak
 
MYSQL
ARJUN
 
Oracle tips and tricks
Yanli Liu
 

What's hot (13)

PPT
Les01
arnold 7490
 
PPT
Oracle PLSQL Step By Step Guide
Srinimf-Slides
 
PPT
Les09
arnold 7490
 
ODP
My sql Syntax
Reka
 
ODP
My sql
Nadhi ya
 
PDF
Foxpro (1)
piyushrajsinha
 
PPT
Oracle PL/SQL Bulk binds
Scott Wesley
 
ODP
Prabu's sql quries
Prabu Cse
 
PPT
Oracle Sql & PLSQL Complete guide
Raviteja Chowdary Adusumalli
 
DOC
Best sql plsql material
pitchaiah yechuri
 
PPT
Oracle naveen Sql
naveen
 
Oracle PLSQL Step By Step Guide
Srinimf-Slides
 
My sql Syntax
Reka
 
My sql
Nadhi ya
 
Foxpro (1)
piyushrajsinha
 
Oracle PL/SQL Bulk binds
Scott Wesley
 
Prabu's sql quries
Prabu Cse
 
Oracle Sql & PLSQL Complete guide
Raviteja Chowdary Adusumalli
 
Best sql plsql material
pitchaiah yechuri
 
Oracle naveen Sql
naveen
 
Ad

Viewers also liked (8)

ODP
Con
Reka
 
ODP
Php1(2)
Reka
 
ODP
Lamp1
Reka
 
PPTX
Online classifieds
Tori.fi
 
PPT
E-CLASSIFIEDS
Reka
 
PPT
PHP Project PPT
Pankil Agrawal
 
PPT
Online shopping ppt by rohit jain
Rohit Jain
 
Con
Reka
 
Php1(2)
Reka
 
Lamp1
Reka
 
Online classifieds
Tori.fi
 
E-CLASSIFIEDS
Reka
 
PHP Project PPT
Pankil Agrawal
 
Online shopping ppt by rohit jain
Rohit Jain
 
Ad

Similar to Mysqlppt (20)

PPT
My sql with querys
NIRMAL FELIX
 
PPT
Tony jambu (obscure) tools of the trade for tuning oracle sq ls
InSync Conference
 
PPT
Sql 2006
Cathie101
 
PPTX
Introduction to sql new
SANTOSH RATH
 
PPT
Sql dml & tcl 2
Dr. C.V. Suresh Babu
 
PPT
Mysql Ppt
Hema Prasanth
 
PPTX
Unit 2 web technologies
tamilmozhiyaltamilmo
 
PPTX
Structure Query Language Advance Training
parisaxena1418
 
PDF
Database development coding standards
Alessandro Baratella
 
PPT
Module04
Sridhar P
 
ODP
Mysql
merlin deepika
 
PPT
Mysql
HAINIRMALRAJ
 
PPT
Mysql
Rathan Raj
 
PPTX
Lab1 select statement
Balqees Al.Mubarak
 
PPT
Les08-Oracle
suman1248
 
PPT
Myth busters - performance tuning 101 2007
paulguerin
 
PDF
Dbms
Sachin Yadav
 
PPTX
Database COMPLETE
Abrar ali
 
My sql with querys
NIRMAL FELIX
 
Tony jambu (obscure) tools of the trade for tuning oracle sq ls
InSync Conference
 
Sql 2006
Cathie101
 
Introduction to sql new
SANTOSH RATH
 
Sql dml & tcl 2
Dr. C.V. Suresh Babu
 
Mysql Ppt
Hema Prasanth
 
Unit 2 web technologies
tamilmozhiyaltamilmo
 
Structure Query Language Advance Training
parisaxena1418
 
Database development coding standards
Alessandro Baratella
 
Module04
Sridhar P
 
Mysql
Rathan Raj
 
Lab1 select statement
Balqees Al.Mubarak
 
Les08-Oracle
suman1248
 
Myth busters - performance tuning 101 2007
paulguerin
 
Database COMPLETE
Abrar ali
 

More from Reka (14)

ODP
Linuxppt
Reka
 
ODP
Apache doc
Reka
 
ODP
Lamp
Reka
 
ODP
Apache ppt
Reka
 
ODP
Php1
Reka
 
ODP
Apache doc
Reka
 
ODP
My sql Commands
Reka
 
ODP
My sql
Reka
 
ODP
Aj
Reka
 
ODP
Linux cmd
Reka
 
ODP
Lamp ppt
Reka
 
ODP
APACHE
Reka
 
ODP
LINUX
Reka
 
ODP
LAMP
Reka
 
Linuxppt
Reka
 
Apache doc
Reka
 
Lamp
Reka
 
Apache ppt
Reka
 
Php1
Reka
 
Apache doc
Reka
 
My sql Commands
Reka
 
My sql
Reka
 
Aj
Reka
 
Linux cmd
Reka
 
Lamp ppt
Reka
 
APACHE
Reka
 
LINUX
Reka
 
LAMP
Reka
 

Recently uploaded (20)

PDF
MARIJA CVITKOVAC - GRAPHIC DESIGN PORTFOLIO 2025
marijacvdesign
 
PDF
Shayna Andrieze Yjasmin Goles - Your VA!
shaynagoles31
 
PDF
Find Your Target Audience A 6-Step Framework to Grow Your Business.pdf
Zinavo Pvt Ltd
 
PPTX
Creative Agency Presentation For Designers
createchangeedu
 
PPTX
UCSP-Quarter 1-Week 6-Powerpoint Presentation
EmyMaquiling1
 
PDF
Portfolio Arch Estsabel Chourio - Interiorism,
arqeech
 
PPTX
Riverfront Development_nashikcity_landscape
aditikoshley2
 
PPTX
3. Introduction to Materials and springs.pptx
YESIMSMART
 
PPTX
Why Great Design Is the Missing Piece in Your ESG Reporting Strategy.pptx
ReportSmith
 
PDF
slide logistics CONVENIENCE STORES ..pdf
thuphuong0965195082
 
PPTX
Engagement for marriage life ethics b.pptx
SyedBabar19
 
PPTX
Web Design: Enhancing User Experience & Brand Value
ashokmakwana0303
 
PDF
Interior design technology LECTURE 28.pdf
SasidharReddyPlannin
 
PPTX
Template of Different Slide Designs to Use
kthomas47
 
PDF
Fashion project1 kebaya reimagined slideshow
reysultane
 
PDF
How Neuroscience and AI Inspire Next-Gen Design
Andrea Macruz
 
PDF
Advanced-Design-Thinking-Certificate-Syllabus.pdf
AlvaroLedesmaBarrn
 
PDF
10 Real World Lessons and 4 Practical Tips for Large Group LSP Method
Ren Chang Soo
 
PPTX
Brown Beige Vintage Style History Project Presentation.pptx
mb3030336
 
PDF
Biophilic Sound Design for Luxury Wellness Centers
Giorgio Marandola
 
MARIJA CVITKOVAC - GRAPHIC DESIGN PORTFOLIO 2025
marijacvdesign
 
Shayna Andrieze Yjasmin Goles - Your VA!
shaynagoles31
 
Find Your Target Audience A 6-Step Framework to Grow Your Business.pdf
Zinavo Pvt Ltd
 
Creative Agency Presentation For Designers
createchangeedu
 
UCSP-Quarter 1-Week 6-Powerpoint Presentation
EmyMaquiling1
 
Portfolio Arch Estsabel Chourio - Interiorism,
arqeech
 
Riverfront Development_nashikcity_landscape
aditikoshley2
 
3. Introduction to Materials and springs.pptx
YESIMSMART
 
Why Great Design Is the Missing Piece in Your ESG Reporting Strategy.pptx
ReportSmith
 
slide logistics CONVENIENCE STORES ..pdf
thuphuong0965195082
 
Engagement for marriage life ethics b.pptx
SyedBabar19
 
Web Design: Enhancing User Experience & Brand Value
ashokmakwana0303
 
Interior design technology LECTURE 28.pdf
SasidharReddyPlannin
 
Template of Different Slide Designs to Use
kthomas47
 
Fashion project1 kebaya reimagined slideshow
reysultane
 
How Neuroscience and AI Inspire Next-Gen Design
Andrea Macruz
 
Advanced-Design-Thinking-Certificate-Syllabus.pdf
AlvaroLedesmaBarrn
 
10 Real World Lessons and 4 Practical Tips for Large Group LSP Method
Ren Chang Soo
 
Brown Beige Vintage Style History Project Presentation.pptx
mb3030336
 
Biophilic Sound Design for Luxury Wellness Centers
Giorgio Marandola
 

Mysqlppt

  • 1. # MySQL is a relational database management system (RDBMS). MySQL is currently the most popular open source database server in existence. # A relational database management system which runs a server, providing multi-user access to a number of databases. # SQL (Structured Query Language) is a standard interactive and programming language for getting information from and updating a database. MY SQL
  • 2. # Structured Query Langauge is cross between a math-like language and an English-like language that allows us to ask a database questions or tell it do do things. For example: SELECT * FROM table; Where 'SELECT', 'FROM' and 'table' are in English, but '*' is a symbol that means all.
  • 3. *USES: Many web applications use MySQL as the database component of a LAMP software stack.
  • 4. Its popularity for use with web applications is closely tied to the popularity of PHP , which is often combined with MySQL.
  • 5. Several high-traffic web sites including Flickr, Facebook, Wikipedia, Google, Nokia and YouTube use MySQL for data storage and logging of user data.
  • 6. CREATE Command - is used to create a database/table. SELECT Command - is used to retrieve data from the database.
  • 7. DELETE Command - is used to delete data from the database.
  • 8. INSERT Command - is used to insert data into a database.
  • 9. UPDATE Command - is used to update the data in a table.
  • 10. DROP Command - is used to delete or drop the database/table. . BASIC QUERIES COMMANDS
  • 11. CREATE Command : The Create command is used to create a table by specifying the tablename, fieldnames and constraints. Syntax: $createSQL=("CREATE TABLE tblName"); Example: $createSQL=("CREATE TABLE tblstudent(fldstudid int(10) NOTNULL AUTO_INCREMENT PRIMARY KEY,fldstudName VARCHAR(250) NOTNULL,fldstudentmark int(4) DEFAULT '0' ");
  • 12. SELECT Command: The Select command is used to select the records from a table using its field names. To select all the fields in a table, '*' is used in the command. Syntax: $selectSQL=("SELECT field_names FROM tablename"); Example: $selectSQL=("SELECT * FROM tblstudent");
  • 13. DELETE Comman d: The Delete command is used to delete the records from a table using conditions as shown below: Syntax: $deleteSQL=("DELETE * FROM tablename WHERE condition"); Example: $deleteSQL=("DELETE * FROM tblstudent WHERE fldstudid=2");
  • 14. INSERT Command: The Insert command is used to insert records into a table. The values are assigned to the field names as shown below: Syntax : $insertSQL=("INSERT INTO tblname(fieldname1,fieldname2..) VALUES(value1,value2,...) "); Example: $insertSQL=("INSERT INTO Tblstudent(fldstudName,fldstudmark)VALUES(Baskar,75) ");
  • 15. UPDATE Command: The Update command is used to update the field values using conditions. This is done using 'SET' and the fieldnames to assign new values to them. Syntax: $updateSQL=("UPDATE Tblname SET (fieldname1=value1,fieldname2=value2,...) WHERE fldstudid=IdNumber"); Example :$updateSQL=("UPDATE Tblstudent SET (fldstudName=siva,fldstudmark=100) WHERE fldstudid=2");
  • 16. DROP Command: The Drop command is used to delete all the records in a table using the table name as shown below: Syntax: $dropSQL=("DROP tblName"); Example : $dropSQL=("DROP tblstudent");
  • 17. Advanced functions and queries that can be useful when building more complex applications. *INNER JOIN: INNER JOIN is used to retrieve the data from all tables listed based on condition listed after keyword ON. If the condition is not meet, nothing is returned. For Eg: We have employees table and offices table. Two tables are linked together by the column officeCode. ADVANCED QUERIES
  • 18. To find out who is in which country and state we can use INNER JOIN to join these tables. Here is the SQL code: SELECT employees.firstname, employees.lastname, offices.country, offices.state FROM employees INNER JOIN offices ON offices.officeCode = employees.officeCode
  • 19. REPLACE: The REPLACE function searches a character string and replaces characters found in search string with characters listed in replacement Str. Syntax : REPLACE(character_string,search_string, replacement_string) * character_string ->the string to be searched. * search_string -> the string of one or more characters to be found in chr String. * replacement_string ->the string that replaces any occurrences of search_string that are found in character_string.
  • 20. Example: R eplaces hyphens (dashes) found in a person’s phone number with periods. SELECT PERSON_PHONE, REPLACE(PERSON_PHONE,'-','.') AS DISPLAY_PHONE FROM PERSON; PERSON_PHONE DISPLAY_PHONE --------------- --------------- 230-229-8976 230.229.8976 401-617-7297 401.617.7297
  • 21. LTRIM The LTRIM function removes any leading (left-hand) spaces in a character string.Only leading spaces are removed—embedded and trailing spaces are left in the string. Eg: LTRIM (' String with spaces ') Returns this string: 'String with spaces '
  • 22. RTRIM The RTRIM function works like LTRIM, but it removes trailing spaces. If we need to remove both leading and trailing spaces, you can nest LTRIM and RTRIM like this: Eg:RTRIM(LTRIM (' String with spaces ')) Returns this string: 'String with spaces'
  • 23. SIGN The SIGN function takes in a numeric expression and returns one of the following values based on the sign of the input number: Return Value Meaning − 1 Input number is negative 0 Input number is zero 1 Input number is positive Null Input number is null
  • 24. Eg :SELECT LATE_OR_LOSS_FEE, SIGN(LATE_OR_LOSS_FEE) AS FEE_SIGN FROM MOVIE_RENTAL WHERE LATE_OR_LOSS_FEE IS NOT NULL; LATE_OR_LOSS_FEE FEE_SIGN 29.99 1 4 1 4 1 29.98 1
  • 25. SQRT The SQRT function takes in a single numeric expression and returns its square root. The general syntax is SQRT (numeric_expression) The result is a bit meaningless, but let’s take the square root of the non-null Late or Loss Fees we just looked at:
  • 26. SELECT LATE_OR_LOSS_FEE,        SQRT(LATE_OR_LOSS_FEE) AS FEE_SQRT   FROM MOVIE_RENTAL   WHERE LATE_OR_LOSS_FEE IS NOT NULL; LATE_OR_LOSS_FEE    FEE_SQRT ----------------  ----------            29.99  5.47631263                4           2                4           2            29.98  5.47539953
  • 27. *CEILING (CEIL) The CEILING function returns the smallest integer that is greater than or equal to the value of the numeric expression provided as an input parameter. In other words, it rounds up to the next nearest whole number.
  • 28. As an example, SELECT LATE_OR_LOSS_FEE, CEILING(LATE_OR_LOSS_FEE) AS FEE_CEILING FROM MOVIE_RENTAL WHERE LATE_OR_LOSS_FEE IS NOT NULL; LATE_OR_LOSS_FEE FEE_CEILING 4.00 4 4.00 4 29.99 30
  • 29. FLOOR The FLOOR function is the logical opposite of the CEILING function —it returns the integer that is less than or equal to the value of the numeric expression provided as an input parameter. In other words, it rounds down to the next nearest whole number.
  • 30. Example showing FLOOR applied to Late or Loss SELECT LATE_OR_LOSS_FEE,        FLOOR(LATE_OR_LOSS_FEE) AS FEE_FLOOR   FROM MOVIE_RENTAL   WHERE LATE_OR_LOSS_FEE IS NOT NULL; LATE_OR_LOSS_FEE  FEE_FLOOR             4.00          4            29.99         29            29.98         29
  • 31. Date and Time: Function Purpose Input Parameters ADD_MONTHS Adds the supplied number of months to the supplied date date, number ofmonths (positive or negative value) CURRENT_DATE Returns the current date in the time zone set for the None database session EXTRACT Extracts the specified datetime field from the supplied date datetime field keyword, date LAST_DAY Returns the supplied date with the day shifted to the last day date of the month
  • 32. A stored procedure is a procedure (like a subprogram in a regular computing language) that is stored (in the database).
  • 33. MySQL supports "routines" and there are two kinds of routines: stored procedures or functions whose return values we use in other SQL statements.
  • 34. A stored procedure has a name, a parameter list, and an SQL statement, which can contain many more SQL statements. PROCEDURES
  • 35. CREATE PROCEDURE Syntax: The general syntax of Creating a Stored Procedure is : CREATE PROCEDURE proc_name ([proc_parameter[......]]) routine_body *proc_name : procedure name *proc_parameter : [ IN | OUT | INOUT ] param_name type *routine_body : Valid SQL procedure statement *An IN parameter is used to pass the value into a procedure. *An INOUT parameter is initialized by the caller and it can be modified by the procedure.
  • 36. Functions can return string, integer, or real values and can accept arguments of those same types.
  • 37. We can define simple functions that operate on a single row at a time, or aggregate functions that operate on groups of rows.
  • 38. Information is provided to functions that enables them to check the number, types, and names of the arguments passed to them. FUNCTIONS
  • 39. CREATE FUNCTION Syntax: The general syntax of Creating a Function is :         CREATE FUNCTION func_name ([func_parameter[,...]]) RETURNS type routine_body func_name : Function name func_paramete r : param_name type type : Any valid MySQL datatype routine_body : Valid SQL procedure statement The RETURN clause is mandatory for FUNCTION. It used to indicate the return type of function.
  • 40. Here is the list of all important MySQL functions. MySQL Group By Clause - It means of grouping the result dataset by certain database table column(s).
  • 41. MySQL IN Clause - This is a clause which can be used alongwith any MySQL query to specify a condition.
  • 42. MySQL BETWEEN Clause - This is a clause which can be used to specify a condition.
  • 43. MySQL UNION Keyword - Use a UNION operation to combine multiple result sets into one. MySQL COUNT Function - The MySQL COUNT aggregate function is used to count the number of rows in a database table. MySQL MAX Function - The MySQL MAX aggregate function allows us to select the highest (maximum) value for a certain column.
  • 44. MySQL RAND Function - This is used to generate a random number using MySQL command. MySQL CONCAT Function - This is used to concatenate any string inside any MySQL command. MySQL DATE and Time Functions - Complete list of MySQL Date and Time related functions.
  • 45. MySQL MIN Function - The MySQL MIN aggregate function allows us to select the lowest (minimum) value for a certain column. MySQL AVG Function - The MySQL AVG aggregate function selects the average value for certain table column. MySQL SUM Function - The MySQL SUM aggregate function allows selecting the total for a numeric column. MySQL SQRT Functions - This is used to generate a square root of a given number.
  • 46. What's the Difference Between a Stored Procedure and a Stored Function? The difference between a stored procedures and stored functions is the same as the difference between a subroutine and a function: * a stored procedure runs some code * a stored function runs some code and then returns a result
  • 47. Why Use Stored Procedures and Stored Functions? The real advantage to using stored procedures and stored functions is that they provide functionality which is platform and application independant.
  • 48. It can be used to back up a database or to move database information from one server to another. 1.Export A MySQL Database: This example shows how to export a database. It is a good idea to export the data often as a backup. # mysqldump -u username -ppassword database_name > FILE.sql Replace username, password and database_name with your MySQL username, password and database name.File FILE.sql now holds a backup of your database, download it to your computer. IMPORT AND EXPORT
  • 49. 2. Import A MySQL Database: Here, we import a database. Using this to restore data from a backup or to import from another MySQL server. Start by uploading the FILE.sql file to the server where we will be running this command. # mysql -u username -ppassword database_name < FILE.sql