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
“NoSQL vs SQL” is a comparison between two types of database management systems. SQL (Structured Query Language) databases are relational databases that use a structured schema, while NoSQL databases are non-relational and offer a more flexible, schema-less data model, each having its own strengths and weaknesses, catering to different use cases and data storage requirements.
CREATE TABLE COMPANY( ID INTEGER PRIMARY KEY AUTOINCREMENT, NAME TEXT NOT NULL, AGE INT NOT NULL, ADDRESS CHAR(50), SALARY REAL );