Hi all.I have been using a certain javascript code to display a "Please wait..." message on screen but it seems to work in some instances and not in others.Please assist me with javascript code that works in all instances. Below is the code I currently use.
In the head tags I have:
<script...
Hi all.My problem is pretty simple.I have been able to load data onto the table from a bean in my jsp page as follows:
//top of page i have these
<%@ taglib prefix="a" uri="http://jmaki/v1.0/jsp" %>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<%@ page language="java"...
Hi all.
Kindly assist me by showing me the right way to achieve the following.
1. I have the following SQL statement which works fine
SELECT x,y,z FROM t1 WHERE x LIKE CONCAT('%',y,'%') UNION ALL SELECT a,b,c FROM t2 WHERE a =c)
Now what I want is to achieve a WHERE statement for the united...
Here is the full-proof solution:
SELECT distinct(s.mobile),s.msg,r.imei,s.dest,
s.reply,s.status from dbS.tCline s
INNER JOIN dbLaw.FORMER_GREY r ON s.msg LIKE concat('%',concat(r.C,'%')) where s.msg like '%SOLD%'
Many thanks!!
Sorry it seems I must pasted the code twice..Here it is :SELECT DISTINCT(dbS.tCline.mobile),dbS.tCline.msg,dbS.tCline.dest,dbS.tCline.reply,dbS.tCline.status FROM dbS.tCline,dbLaw.FORMER_GREY WHERE dbS.tCline.msg LIKE '%'||dbLaw.FORMER_GREY.C||'%' AND dbS.tCline.msg LIKE '%ADMISSION%
The syntax...
Thanks for looking at my post.The syntax I have posted is spot-on except for the area where I need help with where dbS.tCline.msg LIKE '%'||dbLaw.FORMER_GREY.C||'%'
Please note that this is what someone posted as a solution in a certain Oracle blog but didn't work for me in MySQL.
The version...
Hi all,
Am having trouble trying to retrieve records using the following SQL statement:
SELECT DISTINCT(dbS.tCline.mobile),dbS.tCline.msg,dbS.tCline.dest,dbS.tCline.reply,dbS.tCline.statusFROM dbS.tCline,dbLaw.FORMER_GREYWHERE dbS.tCline.msg LIKE '%'||dbLaw.FORMER_GREY.C||'%'...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.