Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

SQL Mid ( ) Function

This function is used to get the character from a text field . Syntax In MySQL : select mid ( column_name , start [ starting_length , ending_length ] ) from table_name ; Starting length : It is mandatory . Ending length : It is optional . If you o

SQL UCASE ( ) Function

This function is used to convert value of column in uppercase . If value of column already in a uppercase then it doesn't covert . It convert only if value of filed is in lowercase . Syntax : select ucase ( column_name ) from table_name ; Syntax f

SQL LCASE ( ) Function

This function is used to convert , value of column in lowercase . If value of column already in a lowercase then it doesn't covert . It convert only if value of filed is in uppercase . Syntax : select lcase ( column_name ) from table_name ; Syntax

SQL Between Operator

This operator is used to get the data from a combination of " greater than equal " and " less than equal " condition . Syntax : select column_name1.......column_nameN from table_name where column_name between value1 and value2 ; Example : Table na

Inserting data from one table to another

Inserting Data from one database table to different Database table. we can insert or copy data from one database table to another table of different database in SQL Server 2008 using following query keeping one thing in mind that the datatype of co

SQL SERVER - Generating XML - 1

Following is the XML which we want to create: SELECT magazineId , magazineName , coverPage , publishDate , expiryDate , isActive ,( SELECT ( SELECT ( SELEC

How to fetch Nth highest salary from a table.

There are two ways to fetch Nth highest salary/number. 1 - By using general sql query which works on all database. 2 - By using database specific sql query. Database specific sql query example Nth highest salary/number SQL Queries in Oracle to fe

Sys Commands in SQL

Sys Commands : 1) How to count number of procedures in a table USE [Database_Name] SELECT COUNT(*) as procedures FROM sys.procedures 2) How to get the attributes of procedure in a table USE [DatabaseName] SELECT * FROM sys.procedures where name L

Copy image into amazon S3

Here is the small steps to upload images or any file into amazon S3 server:- <?php define('awsAccessKey', 'AKIAJMEIK5LU3NAR3BTQ'); define('awsSecretKey', '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'); function copyImagetoAmazon($imag

How To Connect With SQL Server DB .

Below is the C sharp code to connect with the sql data base in .net usingSystem.Data.Sql; usingSystem.Data.SqlClient; // FUNCTION TO CONNECT TO THE SQL SERVER DATABASE privatevoidconnectToSQLServer() { // SQL CONNECTION REPRESENTS AN

1 11 54
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: