Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
73% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #10.5K
Ranked #4K
~3K People Reached
Favorite Forums

20 Posted Topics

Member Avatar for exotic_yuh18

ahm you can try this one. SELECT * FROM EmployeeSalary a WHERE (2=(SELECT COUNT(Distinct(b.salary)) FROM EmployeeSalary b WHERE b.salary>=a.salary))

Member Avatar for Purvi_1
0
226
Member Avatar for Benjamin_4

If I were you I would create three tables such as REGIONS, LOCATIONS, and PLACES. The REGIONS table contains 1 column named RegList where in all the regions are listed. In the LOCATIONS table there would be two columns named LocList and RegList wherein the LocList contains all the list …

Member Avatar for Member #120589
-1
170
Member Avatar for apoorvashah28

The reason why you can’t insert you input such as “hi what’s up” is because you used a single quote (‘hi what’s up’). Whenever you will use a single quote for your input, you need to use double quote (“hi what’s up”) because if not, the computer will think that …

Member Avatar for chocolatte.lavista_1
0
176
Member Avatar for chloefaye

Hi, we can update view .if the view is created with one table. But we canot update view if the view is created with more than one table with multiple columns.why because view is single virtual table created multiple columns from diffrent tables. so we canot update this virtual table …

Member Avatar for RomelynCastillo
0
87
Member Avatar for prince_cyrus

Youre using a Sub-query -- [(select dname from dept where deptno = e.deptno)] -- to get around using a join clause like -- [FROM EMP E INNER JOIN DEPT D ON (D.DEPTNO = E.DEPTNO)] -- however, you are not actually getting away with not joining the two tables, youre just …

Member Avatar for RomelynCastillo
0
97
Member Avatar for michael_angelo

The .NET Framework consists of two primary parts: the common language runtime, which manages application execution, enforces type safety, and manages memory reclamation, and the .NET base class library, which consists of thousands of pre developed classes that can be used to build applications.

Member Avatar for Uchiha Itachi
0
347
Member Avatar for mimi<3

We can store images and videos as well by converting the picture or audio/video into the byte array using C#/ VB and store it in a database as binary file (set the type of the field as binary). because at the end every file is a binary so if you …

Member Avatar for RomelynCastillo
0
82
Member Avatar for bejing.shin

Mysql database can be created using php by executing CREATE DATABASE query using mysql_query() function in php

Member Avatar for RomelynCastillo
0
91
Member Avatar for than.19

A class library is a set of files containing the source code for classes. These files compile together as a single dll and the classes it contains are available to be shared between several applications.

Member Avatar for RomelynCastillo
0
70
Member Avatar for rheanqoh

A database connection can only have one open datareader associated with it at anytime. To do what you are looking to do in your example you must have two connections, one for each datareader.

Member Avatar for RomelynCastillo
0
318
Member Avatar for janjini.10

Hi,Index is used to speed up query.If particular column is used often in queries and table has lot of data.Then it is recommended to create index for that column of the table. It will speed up the query.

Member Avatar for cereal
0
211
Member Avatar for lacxs143
Re: CTE

A common table expression (CTE) is a temporary named result set that can be used within other statements like SELECT, INSERT, UPDATE, and DELETE. It is not stored as an object and its lifetime is limited to the query.

Member Avatar for RomelynCastillo
0
69
Member Avatar for kevin28

All .NET compilers produce metadata about the types defined in the modules they produce. This metadata is packaged along with the module (modules in turn are packaged together in assemblies), and can be accessed by a mechanism called reflection.

Member Avatar for RomelynCastillo
0
64
Member Avatar for mavtcr

Visual Basic is a proprietary Programming Language for Win32 API's, basically it can ONLY run on Microsoft products hence Window 95, 98, 98ME, 98SE, Window 2000, XP HE, XP Prof and suits of MS servers and vista. Visual Basic is Microsoft ways of writing application that can run on its …

Member Avatar for Deep Modi
0
284
Member Avatar for HunainHafeez

A data warehouse is a specially setup database designed to hold large amounts of data for reporting purposes. While a normal database is optimized for transactional activity (while keeping a small amount of history) a data warehouse will be optimized for large scale reporting. Data warehouses are designed to help …

Member Avatar for RomelynCastillo
0
311
Member Avatar for davy_yg

CHAR- You specify how many characters you want the field to hold. The maximum value is 255. For example: CHAR(10) This field can then hold a maximum of ten characters. But if you only use 4 of them, the rest of the 10 characters will be blank spaces. The blank …

Member Avatar for RomelynCastillo
0
279
Member Avatar for leoxhin

For a regular MySQL user you can reset the Password with the `SET PASSWORD` command: mysql> SET PASSWORD FOR 'owner' = PASSWORD('secret');

Member Avatar for RomelynCastillo
0
97
Member Avatar for shaman:D
Member Avatar for shaman:D
Member Avatar for theashman88

Definitely. When you’re in already in the programming or IT industry, you will be doing programs wherein database serves as the backbone. Take for example when you need to do a program for bank operations, you need to have knowledge on how about database and MySQL is one of the …

Member Avatar for RomelynCastillo
0
337

The End.