summary refs log blame commit diff stats
path: root/java/state.sql
blob: 462d787c40a954dbaa9e13040761680e7ce17577 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11






                                                                                  



                                     
                                  


















                                               



                            
-- Assignment status using SQLite

CREATE TABLE `assignments` (
    `name` text, `code` boolean, `output` boolean, `text` boolean, `shown` boolean
);

INSERT INTO `assignments` VALUES 
    ('ArraySearch', 1, 1, 1, 1),
    ('ArraySort', 1, 1, 1, 1),
    ('StringOperations', 1, 1, 1, 1),
    ('MatrixOperations', 1, 1, 1, 1),
    ('AddTwoNumbers', 1, 1, 1, 1),
    ('CylinderCalculations', 1, 1, 1, 1),
    ('ComplexCalculations', 1, 0, 1, 1),
    ('FindNumberInArray', 1, 0, 0, 1),
    ('StaticExecution', 1, 1, 1, 1),
    ('SingletonExample', 1, 1, 0, 1),
    ('StudentsArray', 1, 0, 0, 1),
    ('BankAccountExample', 0, 0, 0, 1),
    ('ShapeAreaCalculations', 1, 0, 0, 0),
    ('AbstractShapeCalculations', 1, 0, 0, 0),
    ('FamilyExample', 0, 0, 0, 0),
    ('CuboidCalculations', 0, 0, 0, 0),
    ('EmployeeDisplay', 1, 0, 0, 0),
    ('CircularBaseExample', 0, 0, 0, 0),
    ('InnerClassExample', 0, 0, 0, 0),
    ('InterfaceExample', 0, 0, 0, 0),
    ('RuntimePolymorphismExample', 0, 0, 0, 0),
    ('PackageExample', 0, 0, 0, 0),
    ('CustomExceptionExample', 0, 0, 0, 0),
    ('ThreadsExample', 0, 0, 0, 0);

.mode markdown
SELECT * FROM `assignments`;