Mysql
Mysql
fusion
Team represent mysql
database
Web Technolgies
FOR FRONTSIDE PORTION
YOU HAVE DONE IT
• Dreamweaver
• Animation (Flash )
Web Technolgies
Server-side
PHP
ASP (Active Server Pages) &
ASP.NET
Java Servlets
XML
JSP (Java Server Pages)
10/23/08
3
LAMP
Apache (www.apache.org)
Most popular web page
serving software
Latest version: 2.0
LAMP
MySQL (www.mysql.com
)
Open source SQL
database that is free and
extremely powerful
10/23/08
7
MySQL datatype
1.Char(size)
It can hold upto 255 character.
2. Varchar(size)
It can hold upto 1 to 255 character.
3. Int
For integer value
4.Date
It take date as a input. yy-mm-dd
‘ 2008-02-23’
10/23/08
8
For open mysql
C:\mysql\bin>mysql –h localhost –u
root –p
Pressenter
Mysql>_
10/23/08
9
Create database
enter
10/23/08
11
Desc command
Mysql>desc data;
10/23/08
12
MySQL –insert data
mysql> insert into data
values('12345',‘incord’,'2007-02-20');
Press enter
Output
10/23/08
13
select command
Mysql>select * from
data;
10/23/08
14
Security by md5
Cryptography
Encryption
And
decryption
10/23/08
15
MySQL –alter Tables
10/23/08
16
Update command
Mysql>Update s set
name=‘riya’ where
srno=‘651’;
10/23/08
17
Delete command
Mysql>delete from s;
It will delete all row.
10/23/08
18
Truncate command
10/23/08
19
Drop Table
Mysql>drop table
s;
10/23/08
20
MySQL References
THE OFFICIAL MYSQL
WEBSITE................
http://www.mysql.com/