Skip to main content

Posts

Natural language processing previous year question paper(2009)

                    CS/B.Tech/(CSE)/SEM-8-April/CS-802B/2009                                               2009                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                    Full Marks : 70                                The figures in the margin indicate full marks.                Candidates are required to give their answers in their own words                ...

Natural language processing previous year question paper(2011)

                    CS/B.Tech/(CSE)/SEM-8/CS-802B/2011                                               2011                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                    Full Marks : 70                                The figures in the margin indicate full marks.                Candidates are required to give their answers in their own words                  ...

Natural language processing previous year question paper (2012)

                    CS/B.Tech/(CSE)/SEM-8/CS-802B/2012                                               2012                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                    Full Marks : 70                                The figures in the margin indicate full marks.                Candidates are required to give their answers in their own words                  ...

Natural language processing Previous Year Question paper(2010)

                    CS/B.Tech/CSE/SEM-8/CS-802B/2010                                               2010                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                        Full Marks : 70                                         The figures in the margin indicate full marks.                       Candidates are required to give their answers in their own wor...

Natural language processing Previous year question paper(2013)

                    CS/B.Tech/CSE/SEM-8/CS-802F/2013                                               2013                     NATURAL LANGUAGE PROCESSING Time Allotted : 3 Hours                                                                                   Full Marks : 70                                          The figures in the margin indicate full marks.                            Candi...

How to insert multiple entry or row in SQL

insert multiple row in SQL is very easy. don't worry about it. mysql> create table orders(orderid varchar(10), customerid varchar(10), orderdate varchar(10)); Query OK, 0 rows affected (0.02 sec) mysql> desc orders; +------------+-------------+------+-----+---------+-------+ | Field      | Type        | Null | Key | Default | Extra | +------------+-------------+------+-----+---------+-------+ | orderid    | varchar(10) | YES  |     | NULL    |       | | customerid | varchar(10) | YES  |     | NULL    |       | | orderdate  | varchar(10) | YES  |     | NULL    |       | +------------+-------------+------+-----+---------+-------+ 3 rows in set (0.01 sec) mysql> insert into o...

SQL INSERT INTO SELECT Statement with Example

SQL INSERT INTO SELECT Statement INSERT INTO SELECT copies data from one table to another table. INSERT INTO SELECT requires that data types in source and target tables match The SQL INSERT INTO SELECT syntax The general syntax is: INSERT INTO table-name ( column-names ) SELECT column-names FROM table-name WHERE condition SQL INSERT SELECT INTO Example

SQL SELECT INTO Statement With Exxample

SQL SELECT INTO Statement SELECT INTO copies data from one table into a new table. SELECT INTO creates a new table located in the default filegroup. The SQL SELECT INTO syntax The general syntax is: SELECT column-names INTO new-table-name FROM table-name WHERE EXISTS ( SELECT column-name FROM table-name WHERE condition ) The new table will have column names as specified in the query. SQL SELECT INTO Example

SQL WHERE EXISTS Statement with Example

SQL WHERE EXISTS Statement WHERE EXISTS tests for the existence of any records in a subquery. EXISTS returns true if the subquery returns one or more records. EXISTS is commonly used with correlated subqueries. The SQL EXISTS syntax The general syntax is: SELECT column-names FROM table-name WHERE EXISTS ( SELECT column-name FROM table-name WHERE condition ) SQL EXISTS Example