Oracle Community

The social network for Oracle people

Asadullah fazli
  • Male
  • kabul
  • Afghanistan
Share on Facebook
Share Twitter
  • Blog Posts (2)
  • Discussions
  • Events
  • Groups (1)
  • Featured Photos
  • Photo Albums
  • Featured Videos

Asadullah fazli's Friends

  • sadan
  • Santosh
  • Uwe Hesse
  • Kuassi Mensah
  • oraclebase

Asadullah fazli's Groups

  • dba

    dba

    34 members

Gifts Received

Gift

Asadullah fazli has not received any gifts yet

Give a Gift

 

Asadullah fazli's Page

Latest Activity

Uwe Hesse and Asadullah fazli are now friends
Mar 2
Asadullah fazli posted a status
"Hi Dear friends i am in the final semester of computer science and i am going to take the final project which field is better?"
Sep 25, 2012
Asadullah fazli shared Mahir M. Quluzade's video on Facebook
Sep 23, 2012
Asadullah fazli shared Parag Sharma's group on Facebook
Sep 23, 2012
Asadullah fazli shared Surachart Opun's photo on Facebook
Sep 23, 2012
Asadullah fazli shared Eddie Awad's video on Facebook
Sep 23, 2012
Asadullah fazli shared Surya's video on Facebook
Sep 23, 2012
Asadullah fazli shared Eddie Awad's video on Facebook
Sep 23, 2012
Asadullah fazli posted a blog post

Kindly Request From You People

project.""Hi dear friends: I am in the final semester of computer scie i want to take the final project in the field of database.""so dear friend which kind of tools should i learn before i take this projectplease please please please tell me.this will be you great kindness on me.See More
Sep 23, 2012
Asadullah fazli posted a status
"so dear friend which kind of tools should i learn before i take this project."
Sep 23, 2012
Asadullah fazli posted a status
"Hi dear friends: I am in the final semester of computer science and i want to take the final project in the field of database."
Sep 23, 2012
Santosh left a comment for Asadullah fazli
"Find out the number is Even or Odd    declare  num number(5);begin  num:=#  if num mod 2 =0 then    dbms_output.put_line(' Number is ||num||' is even');  else   …"
Dec 8, 2011
Asadullah fazli left a comment for Wissem EL KHLIFI
"Hi Wissem plz kindly solve my problem:- How to find even and odd number without any function in plsql."
Dec 8, 2011
Asadullah fazli posted a status
"H"
Dec 8, 2011
Asadullah fazli posted a status
"Answer to this question How to find even and odd number in plsql"
Dec 8, 2011
Asadullah fazli left a comment for bilal bhat
"Hi bilal plz kindly answer to this question How to find even and odd numbur without any function in plsql"
Dec 8, 2011

Profile Information

About Me:
I am a student of (BIT) computer science in a Maiwand university. Afghanistan,Kabul.

Asadullah fazli's Blog

Kindly Request From You People

project.""Hi dear friends: I am in the final semester of computer scie i want to take the final project in the field of database."

"so dear friend which kind of tools should i learn before i take this project

please please please please tell me.

this will be you great kindness on me.

Posted on September 23, 2012 at 6:11am

Oracle sql*plus

How to retrieve those names which has underscore character like Ali_khan in ename column

Posted on October 16, 2011 at 12:47am — 3 Comments

Comment Wall (4 comments)

You need to be a member of Oracle Community to add comments!

Join Oracle Community

At 9:16pm on December 8, 2011, Santosh said…

Find out the number is Even or Odd

 

 declare
  num number(5);
begin
  num:=#
  if num mod 2 =0 then
    dbms_output.put_line(' Number is ||num||' is even');
  else
    dbms_output.put_line('Number  is '||num||' is odd');
  end if;
end;

At 5:36am on December 8, 2011, Santosh said…

Hi

 

Plz find the below :

 

 

declare

first varchar(20):=&a;
second varchar2(10):=&b;
begin
dbms_output.put_line ('First letter before Swap :='||first);
dbms_output.put_line ('Second letter before Swap :='||second);
first := first || '/' || second;
second := substr(first, 1, instr(first, '/') - 1);
first := substr(first, instr(first, '/') + 1);
dbms_output.put_line ('........................');
dbms_output.put_line ('........................');
dbms_output.put_line ('First letter after Swap :='||first);
dbms_output.put_line ('Second letter after Swap :='||second);
end;

At 4:43am on October 16, 2011, bilal bhat said…

We have to use escape sequence,e.g if there is a table "bilal" and it has entry bilal_bhat under name column and i want to retrieve those names which has underscore, we can use

select name from bilal where name like '%/_%' ESCAPE '/';

At 4:39am on October 16, 2011, bilal bhat said…

select name from bilal where name like '%/_%' ESCAPE '/';

 
 
 

© 2013   Created by Eddie Awad.

Badges  |  Report an Issue  |  Terms of Service