Yahoo Web Search

Search results

  1. I want to create a small database for my inventory but I have some problems on picking a structure. The inventory will be updated daily at the end of the day. The problem I am facing is the following. I have a table for my products, having an. id, name, price, quantity.

    Code sample

    create table product (
      id integer primary key,
      name varchar(100) not null,
      price decimal(6,2) not null,
      inventory integer not null...
  2. Jul 1, 2016 · I work with a database that stores inventory kind of like yours does, but it includes audit cycles and stores adjustments just like receipts. It seems to work well, but everyone involved is well trained, and the warehouse staff aren't exactly quick to learn new procedures.

  3. Aug 10, 2011 · I'm working on a transactional inventory system for our e-commerce company, and I'm looking for some sort of a guide or tutorial on how to accomplish this with a MySQL database.

  4. Mar 23, 2013 · I want to make a relational database system for a local computer hardware non-profit. There are two inter-related features that I want to figure out how to implement. First, we need to manage our inventory of parts, and second, we need to track donations of computer systems as they come into us, and also as we grant them out.

  5. Mar 4, 2014 · I recently moved from a developer position to a project manager position at a company in Atlanta, and my first big project is to perform a comprehensive data inventory on all of our databases and the applications that use them.

  6. Sep 10, 2013 · We have several parts to produce a product (sub-assembly, end product): tpart, so this is can be an atomic part, a sub-assembly or a final product. The sub-assemblies and final products are defined by tbom (bill of materials): this is the definition side.

  7. People also ask

  8. Jan 7, 2013 · Our new idea is to have an adjustments table with the history, but also keep a table with what the current inventory is. When an adjustment is made, our program will update both the adjustments table and the current inventory tables at the same time.

  1. People also search for