| Thread | Last Post | Replies |
|
| SQL Display Problem | 31 Aug 2003 23:11 GMT | 3 |
I'm setting up a Tutorials system, and I'm experiencing some problems. I want it to display the tutorials like this: (example) ----
|
| Query over severall databases | 31 Aug 2003 22:08 GMT | 2 |
Hello to all, I have a 'small' problem. I have made a application in php that connect trough ODBC to a Oracle RDB (VMS) or Basis+ database (VMS) and present the data to a user. There are 2 Oracle databases in diffrent city's and 5 Basis+
|
| deleting more than one id record | 31 Aug 2003 21:51 GMT | 2 |
Using the SQL delete command, I can only delete one record per command. Does anybody know how to delete a range of records at once? Thanks, Gloria
|
| Syntax question ($_SESSION in query) | 31 Aug 2003 20:48 GMT | 5 |
Can someone point me to the correct syntax for something like: mysql_query("select thing from table where id = $_SESSION['whatever']"); Either Mysql chokes, or PHP chokes. Do I have to escape one set of quotes? I've taken to "reassigning" the variable, along the lines of
|
| count | 31 Aug 2003 20:01 GMT | 3 |
I have a table people with : id name date
|
| pattern match | 30 Aug 2003 16:45 GMT | 1 |
Where can I find info or doc on "pattern match" used within WHERE clause (mysql). As I need to match with PHP variables I'd prfer something adapted to PHP. In "PHP&MySQL Web Devlpt" (Luke Welling) I can't see much....
|
| Weird problem inserting data into DB... | 30 Aug 2003 14:58 GMT | 1 |
I'm trying to insert data into a DB which will not work. It's a simple HTML form that I fill in and PHP inserts the data from the form into the DB, but it doesen't work. The page itself returns no errors, but no data appears into the database, so
|
| finding last digit | 29 Aug 2003 09:11 GMT | 1 |
How do I find the last digit of a number and output text accordingly? This is the code I'm trying to use, but isn't working: function ending() { $count_digits = preg_split('//', $result->hit_count, -1,
|
| Search for the the first letter of a fields value? | 28 Aug 2003 21:20 GMT | 3 |
With MySQL, I need to be able to make a query against a table field where I am returning results based on the first letter/text that is contained in the field. So for example lets say I have a field called 'name' of the type text in a the table 'people' and I want to pull out all ...
|
| group by | 28 Aug 2003 20:33 GMT | 2 |
I've got a table with such cols : ip, timestamp. I would like to select count of unique ip per day. I tried : SELECT COUNT(*) AS counter, FROM_UNIXTIME(czas,'%d-%m-%Y') AS dat FROM table GROUP BY FROM_UNIXTIME(czas,'%d-%m-%Y'), ip
|
| problem with query | 28 Aug 2003 19:23 GMT | 2 |
Hello, at the moment I don't know if this problem comes from apache, or from php, so I posted it to the two groups. Well, we have a big Intel server with 4 processors, 4 Gb Ram, and LinuxServer 2.1. In a Windows 2000 Server we have Mysql 4.0 like
|
| Special query question: | 28 Aug 2003 13:42 GMT | 1 |
With MySQL, I need to be able to make a query against a table field where I am returning distinct results based on the first letter/text that is contained in the field. So for example lets say I have a field called 'name' of the type text
|
| Why is this code screwing up? | 27 Aug 2003 20:02 GMT | 1 |
The following code is return bad results and I cannot figure out what I am doing wrong. I have a series of publications ranging from 1997 to 2003 but all I get is 2003 listed many times? <?php
|
| How do I extract data from an SQL database? | 26 Aug 2003 19:46 GMT | 1 |
So I have an SQL database on a server, and I just want to pull the data off of it so that I have an archive of it on my computer. It doesn't have to be displayed in any special way, but if the server crashes, it would be nice to be able to upload that archive once the server is up ...
|
| How to Select Records NOT in another table? | 25 Aug 2003 17:32 GMT | 1 |
I have: Table1 and Table2 ID [Integer] ID[Integer] with these records in Table1:
|