SQLITE ‘da AutoIncrement Alan Kullanımı
CREATE TABLE COMPANY( ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT NOT NULL, AGE INT NOT NULL, ADDRESS CHAR(50), SALARY REAL );
Özgür Özkök
SQL stands for Structured Query Language. It is a language used to manage data in relational database management systems (RDBMS).
RDBMSs are database management systems that store data in tables. Each table consists of rows and columns. The rows represent individual data records, and the columns represent the different pieces of data about each record.
SQL is a declarative language, meaning you tell the database what you want to do, not how.
CREATE TABLE COMPANY( ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT NOT NULL, AGE INT NOT NULL, ADDRESS CHAR(50), SALARY REAL );