Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
mysql-query
- Page 1
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
1 Week Ago
by Pelorus_1
Through its combination of natural language processing and structured
query
generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Re: How To Send MYSQL Data To An Email
Programming
Web Development
2 Months Ago
by Biiim
…, DBDB); if (!$conn) { echo "Error: Unable to connect to
MySQL
." . PHP_EOL; echo "Debugging errno: " . mysqli_connect_errno() . PHP_EOL; echo…($con,$Q){ $R = mysqli_query($con,$Q) or die('Error with
Query
:'.$Q.' Error:'.mysqli_error($con)); return $R; } function dbCheckRows($R,$KEY…
Re: How To Send MYSQL Data To An Email
Programming
Web Development
2 Months Ago
by Davidmenk3
… than a bad Wi-Fi connection! The problem is in $
query
["SELECT * FROM demo ORDER BY ID DESC LIMIT 1…"];—this syntax is invalid. Fix it to $
query
= "SELECT * FROM demo ORDER BY ID DESC LIMIT 1…
Re: Multiple MySQL connections + transactions
Programming
Databases
1 Month Ago
by Reverend Jim
… go through the connection object you can't run a
query
on more than one db at a time. It seems…
mysql query
Programming
Web Development
13 Years Ago
by arsala211
mysql
query
for selecting a specifice row
mysql query problem
Programming
Web Development
11 Years Ago
by yy886
mysql
query
problem Sample data of my
mysql
. id | id2 | sender | recipient | senderread | recipientread | Title 31 | …get the result if id or id2 is 31. $
query
= mysql_query('SELECT * FROM pm where id="'.$id…quot;no"... $_SESSION['user'] = "A177"; $
query
= mysql_query('SELECT * FROM pm where id="'.$id.'" or…
Mysql query
Programming
Databases
15 Years Ago
by rajeesh_rsn
… in that shop will show. I did that using the
mysql
query
like this [ICODE]select * from data_base where type="TV… brands without repeating the name. If I will use this
query
models will repeat [ICODE]select "Brand" from data_base…
MySQL Query
Programming
Databases
14 Years Ago
by felix001
Can anyone help ? Im looking to find a
MySQL
query
using regular expressions to allow me to remove any paragraph html tags within block quote tags. An example is : [CODE]<blockquote> <p>TEXT</p> </blockquote>[/CODE] Should be : [CODE]<blockquote> TEXT </blockquote> [/CODE] Thanks,
mysql query
Programming
Databases
13 Years Ago
by xmens
may peace on you !guys i am new to
MySQL
query
. i am developing a student information management system and the …
Mysql query to protected spreadsheet
Programming
Software Development
14 Years Ago
by muppet
… am using VB to
query
a
MySQl
database and populate an …quot; End If Next WSheet '
MySQL
Query
With ActiveSheet.QueryTables.Add(Connection:="ODBC… = 0 .PreserveColumnInfo = True .SourceConnectionFile = "C:\
MySQL
.dsn" .Refresh BackgroundQuery:=True End With 'Protect all …
Mysql query, selecting id that is less than previous id
Programming
Web Development
11 Years Ago
by garyjohnson
Hello, I have a
mysql
query
$
query
= "SELECT * FROM comments WHERE commenter_username IN (" . join(',', $list) … id. so im thinking it would look something like this $
query
= "SELECT * FROM comments WHERE commenter_username IN (" . join…array that is parsed with a comma so the
mysql
query
can comprehend it.
Re: MySQL query error
Programming
Web Development
14 Years Ago
by ayooshkasmth
…(id, parent_id, child_name) VALUES ('', '','Test name')
MySQL
query
failed [/code] and this is my INSERT
query
[code] if(isset($_POST[Submit])){ $id = $_GET…[parent_id]','$_POST[child_name]')"; echo $
query
; $result = mysql_query($
query
) or die('<br /><br />
MySQL
query
failed'); } // End else echo $…
MYSQl query fix suggestion
Programming
Databases
13 Years Ago
by oksam
I have been trying to create a search
query
. Following is my
mysql
query
: SELECT id, title, SUBSTRING(description, 1, 80) AS description,… me if you can'); There is an error on this
mysql
query
. Can anyone spot it. Error exists in this "…if you can');" section only. if i run full
query
without this MATCH section it works. So how can I…
MySQL query problem
Programming
Web Development
12 Years Ago
by rp91
… a problem I have been having with my
mysql
query
and thought this would be the best place…jpg) for the snapshot of the table. The
mysql
query
is as follows: mysqli_query("INSERT INTO post_tag(post_id…' AND tag IN ('$music','$sport','$tech')") or die ('
Query
is invalid: ' . mysql_error());; Any help will be so …
MySQL query error
Programming
Web Development
14 Years Ago
by ayooshkasmth
…php include("database.php"); $id = $_GET['id']; $
query
= "SELECT * FROM parent WHERE id=$id"; $result… child_name) VALUES ('','$_POST[parent_id]','$_POST[child_name]')"; echo $
query
; $result = mysql_query($
query
) or die('
MySQL
query
failed. '); } // End else echo $child_name; [/…
Mysql Query Array Result Problem
Programming
Web Development
13 Years Ago
by DILO3D
I need to use the
mysql
query
result.following is the
mysql
query
. [CODE] while($row = mysql_fetch_array($result)) { $name=$row['name']; } [/CODE] For …example: result of above
query
is (name1,name2…
MySQL query ignoring "ORDER BY" clause?
Programming
Databases
15 Years Ago
by jay.barnes
Good morning/afternoon/evening! I'm trying to run a
MySQL
query
, but it seems to be ignoring the "ORDER BY…I'm using the "IN" keyword in my
query
(several times, as a matter of fact, along with … BY" clause? I've included an example of the
query
below: [code] SELECT * FROM Ships, Accounts WHERE Available_Loads.Action != '…
mysql query having orderby, limt
Programming
Web Development
13 Years Ago
by aithabuddy
… have a problem with the
mysql
query
that uses both order by and limit.Following is the sql
query
i'm using, select… primary key, and i created index on venue, cat1. This
query
is examining 78000 records out of 90000. If i can… only. I need both order by id, limit in this
query
but number records examining should reduce. Can you please tell…
Re: Mysql query to mysqli query
Programming
Web Development
10 Years Ago
by Dieter_1
… I have another include page where I
query
the database and with the old
mysql
query
it worked just fine like:` function getSetting… mysqli like: function getSetting($property){ global $dbpraefix; $res = $mysqli->
query
("SELECT value FROM ".$dbpraefix."settings WHERE property…
Mysql query to mysqli query
Programming
Web Development
10 Years Ago
by RonKevinT.Manuela
Im trying to convert
mysql
query
to mysqli but it doesnt work...why? From: mysql_query("…=views+1 WHERE viewID='1'"); To: $q1=$mysqli->
query
("UPDATE views SET views=views+1 WHERE viewID='1… on line 5 Fatal error: Call to a member function
query
() on a non-object in C:\wamp\www\SICS\home…
mysql query - search keywords
Programming
Databases
14 Years Ago
by cubespeed
Hello to everybody I have a problem with a
MYSQL
query
and I almost got it but am stuck for a … and value "val5". All I got is this
query
: [CODE]SELECT DISTINCT t1.id, t1.name, t2.cat_id, t3… ---+--------+-------- 6 | fillip | 70 [/icode] So on output from my previous
query
I need the record that has both val1 and val5…
Re: mysql query having orderby, limt
Programming
Web Development
13 Years Ago
by vibhaJ
BTW its different question but how to see that
query
has examined how many record? I am having
mysql
query
browser and phpmyadmin.
MySQL query problem in CodeIgniter
Programming
Web Development
12 Years Ago
by xNZxAssAssiNx
… code I have a
mysql
query
: "SELECT `username`,`password` FROM `users` WHERE `username` = 'Tyler'" This
query
doesn't return anything in… codeigniter but it does return username and password if I
query
in phpmyadmin. Does anyone have any idea what is wrong…
mysql query cache
Programming
Databases
13 Years Ago
by aithabuddy
How to clear the
mysql
query
cache? RESET
QUERY
CACHE; is not working. Thanks in advance
mysql query with conditional date range
Programming
Databases
12 Years Ago
by mbarandao
Hello all: I have the following
mysql
query
statement: SELECT COUNT(*) as ttl_rows FROM (SELECT DISTINCT(date(timeentry)) … 2012-12-03. My interest here is to modify the
query
to return all dates with the date range and where…
Re: MySQL query's
Programming
Databases
18 Years Ago
by pty
[QUOTE=dami06;317164]Hi, I am trying to understand
MySQL
as i am new to this and i have a … not giving me any answer at all.. I am using
MySQL
query
.. Thank you so much in advance for your help[/COLOR… desc [/code] /you may need to alter these slightly for
mysql
- i use postgresql these days
MySQL query's
Programming
Databases
18 Years Ago
by dami06
Hi, I am trying to understand
MySQL
as i am new to this and i have a … not giving me any answer at all.. I am using
MySQL
query
.. Thank you so much in advance for your help[/COLOR…
Mysql query result
Programming
Web Development
15 Years Ago
by o12357
Hi everyone, i would like to know whether the result of a
mysql
query
executed from one php page will be available to another php page on the same site. thanks!
MySql Query - First Order Date per customer
Programming
Databases
10 Years Ago
by riteshuae
Hi, i have installed prestashop 1.4.8.2 & i need a report of first order date for each customers, please help me to create
mysql
query
. i need below columns information from database. id_customer, firstname, lastname, first order date thanks, Ritesh
Re: MySql Query - First Order Date per customer
Programming
Databases
10 Years Ago
by riteshuae
In order_history table there is no id_customer column
mysql
query
giving error Unknown column 'order_history.id_customer' in 'group statement'
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC