Viewing 15 posts - 1 through 15 (of 24 total)
Hi Balmukund ,
Only this error is occuring....No other error occurs
July 8, 2008 at 4:02 am
Thanks a lot....
I got the solution.
April 14, 2008 at 5:07 am
John,
Can you give me the query for executing this...
Thanks
Nisha
April 14, 2008 at 4:43 am
I want to display the list of users except the admin users from the users table.
So what query will help to fetch these records.
February 24, 2008 at 10:00 pm
SELECT U.uid,U.name,U.mail,R.name
FROM users U
INNER JOIN users_roles Ur
ON U.uid=Ur.uid
INNER JOIN role R
ON Ur.rid=R.rid;
This query displays the list of admin users.
I tried the following query using WHERE condition for listing out authenticated...
February 24, 2008 at 9:16 pm
I have wrote query for listing out the admin users
But I dont know how to write query for listing the authenticated users.
February 22, 2008 at 6:31 am
Hi Kenneth
Thanks for your answer
Stil I am unable to get the names of the blocked user..
I am able to retrieve their id's alone...
I want their name also along with the...
February 21, 2008 at 3:27 am
table:travelbagcontent
tbid int
nid int
uid int
name varchar
description text
recordurl text
etc...
table:node
nid int
vid int
type varchar
title varchar
uid int
status int
etc...
table:node_revisions
nid int
uid int
title varchar
etc...
type contains data like forum,blog,travelbag,picture,video
For eg:In the application it contains several options like
add...
December 7, 2007 at 5:20 am
Thanks a lot Matjaz
It helped me a lot...
October 26, 2007 at 1:05 am
Create Table ItemDetail(Itemid int, ItemCodeDescription text)
The table contains 20 million records.
Now I want to increase the performance ie.Change the table scan to seek
for the following query
SELECT * FROM ItemDetail WHERE...
October 25, 2007 at 12:37 am
Viewing 15 posts - 1 through 15 (of 24 total)