You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
393 B

/*========================================================================
Script : Table.sql
Author : Dufour Louis
Creation date : 20-02-2023
========================================================================*/
DROP TABLE IF EXISTS Status;
CREATE TABLE IF NOT EXISTS Status
(
addresse numeric,
type char(1),
valeur numeric,
primary key(addresse,type)
);