Create Database
- Open Microsft Access
- select File > New menu.
- Select Blank database template.
- Enter a name for the database inside File Name box, select a location by click the folder icon, and then select Create button.
Create Table In Microsoft Office Access SQL
- On the Create tab, in the Macros & Code or Other group, click Query Design.
- Close Show Table dialogue.
- On the Design tab, in the Query Type group, click Data Definition.
- Type the following SQL statement:
CREATE TABLE Kategori (
KodeKategori CHAR(10)
NamaKategori CHAR(50),
Jumlah INTEGER,
CONSTRAINT [PKKodeKategori] PRIMARY KEY (KodeKategori)
);
CREATE INDEX IdxKodeKategori ON Kategori WITH DISALLOW NULL - On the Design tab, in the Results group, click Run.
Bibliography
https://learn.microsoft.com/
https://support.microsoft.com/
https://blueclawdb.com/
database table, database design, database definition
Tidak ada komentar:
Posting Komentar