UpperCase -> Lowercase
Posted by:
Werner Broser ()
Date: April 06, 2012 07:42AM
After executing these statements:
SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0;
SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0;
SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='TRADITIONAL';
CREATE SCHEMA IF NOT EXISTS `Salma_WTF` DEFAULT CHARACTER SET latin2 COLLATE latin2_general_ci ;
USE `Salma_WTF` ;
-- -----------------------------------------------------
-- Table `Salma_WTF`.`stCountries`atclubfeesatclublocationsatclublocations
-- -----------------------------------------------------
CREATE TABLE IF NOT EXISTS `Salma_WTF`.`stCountries` (
`fid` INT NOT NULL AUTO_INCREMENT ,
`fISO3` CHAR(3) NULL ,
`fName` VARCHAR(45) NULL ,
PRIMARY KEY (`fid`) )
ENGINE = InnoDB;
why are then the fieldnames as defined, but the tablename is in lowercase ?
kr/Werner
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.