Git Product home page Git Product logo

hotel-management-system's People

Contributors

chironyf avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

hotel-management-system's Issues

数据库问题

19:49:16 CREATE TABLE orders ( # 订单号 orderNumber CHAR(32) NOT NULL , # 订单状态 orderStatus CHAR(18) check (value in ('预订中','已入住','已退房')) , # 客户身份证 customerIDCard CHAR(18), # 入住房间号 roomNumber CHAR(6) NOT NULL, # 入住时间 checkInTime DATE NOT NULL, # 离店时间 checkOutTime DATE NOT NULL, # 需付金额(由于可能续费,不能作为外键) totalMoney INT UNSIGNED NOT NULL, # 服务员工号 waiterID VARCHAR(10) NOT NULL, # 备注 remarks VARCHAR(32), orderTime DATE NOT NULL, # 主键 PRIMARY KEY (orderNumber), # 外键 FOREIGN KEY (customerIDCard) REFERENCES customers(customerIDCard), FOREIGN KEY (roomNumber) REFERENCES room(roomNumber), FOREIGN KEY (waiterID) REFERENCES waiter(waiterID) ) ENGINE=InnoDB Error Code: 3813. Column check constraint 'orders_chk_1' references other column. 0.000 sec

这段报错,但我看不懂为什么错了,网上也找不到解决办法。

pox

javax.servlet javax.servlet-api 3.1.0 provided

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.