0% found this document useful (0 votes)
170 views

PhpMyAdmin SQL Dump

This document contains the SQL code to create three tables in a database called "collegenetworking". The tables are for advertisements, student results, and messages between users (called scraps). It provides the structure and fields for each table, but does not include any sample data. The code is formatted for export from phpMyAdmin on March 9, 2011.

Uploaded by

Keerthi Karna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
170 views

PhpMyAdmin SQL Dump

This document contains the SQL code to create three tables in a database called "collegenetworking". The tables are for advertisements, student results, and messages between users (called scraps). It provides the structure and fields for each table, but does not include any sample data. The code is formatted for export from phpMyAdmin on March 9, 2011.

Uploaded by

Keerthi Karna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

-- phpMyAdmin SQL Dump

-- version 3.2.0.1

-- http://www.phpmyadmin.net

--

-- Host: localhost

-- Generation Time: Mar 09, 2011 at 05:36 AM

-- Server version: 5.1.36

-- PHP Version: 5.3.0

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";

--

-- Database: `collegenetworking`

--

-- --------------------------------------------------------

--

-- Table structure for table `advertisement`

--

CREATE TABLE IF NOT EXISTS `advertisement` (

`advertiseid` bigint(8) NOT NULL AUTO_INCREMENT,

`advertisename` varchar(50) NOT NULL,

`image` varchar(50) NOT NULL,

`links` varchar(50) NOT NULL,


PRIMARY KEY (`advertiseid`)

) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--

-- Dumping data for table `advertisement`

--

-- --------------------------------------------------------

--

-- Table structure for table `result`

--

CREATE TABLE IF NOT EXISTS `result` (

`resid` bigint(8) NOT NULL AUTO_INCREMENT,

`collegename` varchar(50) NOT NULL,

`section` varchar(50) NOT NULL,

`result` varchar(50) NOT NULL,

PRIMARY KEY (`resid`)

) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--

-- Dumping data for table `result`

--
-- --------------------------------------------------------

--

-- Table structure for table `scrap`

--

CREATE TABLE IF NOT EXISTS `scrap` (

`scrapid` bigint(8) NOT NULL AUTO_INCREMENT,

`senderid` bigint(2) NOT NULL,

`recieverid` bigint(2) NOT NULL,

`smessage` varchar(500) NOT NULL,

`time` varchar(50) NOT NULL,

`date` date NOT NULL,

PRIMARY KEY (`scrapid`)

) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

--

-- Dumping data for table `scrap`

--

You might also like