Login   Register  
PHP Classes
elePHPant
Icontem

File: secondbackup.sql

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of ubaidullah khan  >  Compare two MySQL Backups and output changes to a file  >  secondbackup.sql  >  Download  
File: secondbackup.sql
Role: Sample output
Content type: text/plain
Description: secnod backup file
Class: Compare two MySQL Backups and output changes to a file
Generate and compare backups of MySQL databases
Author: By
Last change:
Date: 2010-12-01 06:11
Size: 351 bytes
 

Contents

Class file image Download
create table tbalunos
(
    idaluno int auto_increment primary key,
    nome char(60),
);
insert into tbalunos (2009, 2010, "");
insert into tbalunos (2010, 2010, "");
insert into tbalunos (2011, 2010, "");
insert into tbalunos (2012, 2010, "");

create table Student
(
    idaluno int auto_increment primary key,
    nome char(60),
);