The product is supposed to be an open source application, developed under the PRSC(Punjab Remote Sensing Centre)organization, for the usage of PUDA(Punjab Urban Planning and Development Authority ). It is An android based system implementing client-server model. The Po portal System provides simple mechanism for the Planning officer to share truly verified report. The following are the main features that are included in the application are: Common platform support: Offers operating support for most of the known and commercial operating systems i.e. android operating system. Number of users being supported by the system: Though the number is precisely not mentioned but the system is able to support a large number of online users at a time. Search: search for the pending list of the cases assigned is generally by logging in to the application. Id system: provides each officer with a unique Id which is sent at the time of report submission. Verification section: Verif...
Description The SQL Server (Transact-SQL) ALTER TABLE statement is used to add, modify, or drop columns in a table. Add column in table You can use the ALTER TABLE statement in SQL Server to add a column to a table. Syntax The syntax to add a column in a table in SQL Server (Transact-SQL) is: ALTER TABLE table_name ADD column_name column_definition; Example Let's look at an example that shows how to add a column in an SQL Server table using the ALTER TABLE statement. For example: ALTER TABLE employees ADD last_name VARCHAR(50); This SQL Server ALTER TABLE example will add a column to the employees table called last_name . Add multiple columns in table You can use the ALTER TABLE statement in SQL Server to add multiple columns to a table. Syntax The syntax to add multiple columns to an existing table in SQL Server (Transact-SQL) is: ALTER TABLE table_name ADD column_1 column_definition, column_2 column_definition, ...