Giter Club home page Giter Club logo

find-lost's Introduction

<본 프로젝트 케이싱 규칙>
-폴더명, 클래스, 함수 : 파스칼 케이싱
-변수, 매개변수 : 카멜케이싱


<데이터베이스 프로시저>
//테이블 데이터를 전부 삭제하는 프로시저
CREATE PROCEDURE `del` ()
BEGIN
delete from findlost.main_lostitemstemp;
alter table findlost.main_lostitemstemp auto_increment=0;
END

//테이블을 교체하는 프로시저
CREATE PROCEDURE `changeTable` ()
BEGIN
 RENAME TABLE findlost.main_lostitems TO temp;
 RENAME TABLE findlost.main_lostitemstemp TO findlost.main_lostitems;
 RENAME TABLE temp TO findlost.main_lostitemstemp;
END


find-lost's People

Contributors

jujubebat avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.