Jump to content
php.lv forumi

php/mysql Jautājums


Tevocis

Recommended Posts

Sveiki man ir jautājums.es esmu izveidojis nelielu forumu.

man vajag lai no datubāzes izvelk lietotāja grupu bet grupa man ir ka skaitlis precizāk id , bet man vajag lai foruma rādās ka teksts piemēram Group_id=1 Būs Admin nākamais id moderātors.

 

and otrs jautājums ka lai uztaisa ka tad kāds iepostu tabula parādas cik postus lietotājs ir veicies ko vajadzētu likt kodā?

vel gan php mācos bet saprāšana man ir

 

 

Paldies jau iepriekš

Link to comment
Share on other sites

1.a) glabā grupu tekstuālo reprezetnāciju kā konstates turpat php kodā vai atsevišķā failā;

b) veido vēl vienu tabulu `groups` ar laukiem `id`,`name` un izmantojot SQL JOIN iegūst datus no abām tabulām.

2. Paskaties ko dara SQL funkcijas COUNT un GROUP BY, varbūt var likt lietā kādu.

Link to comment
Share on other sites

Uztaisīju nelielu piemēru.

Ir tabula ar postiem:

CREATE TABLE `posts` (
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `user_id` int(11) NOT NULL,
 `text` text COLLATE ascii_bin NOT NULL,
 PRIMARY KEY (`id`),
 KEY `user_id` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=ascii COLLATE=ascii_bin

 

Tabulās ir 3 posti:

 

INSERT INTO `posts` (`id`, `user_id`, `text`) VALUES
(1, 1, 'bla'),
(2, 1, 'blabla'),
(3, 2, 'text'),
(4, 2, 'texttext'),
(5, 2, 'texttexttext');
 
Un, pirmkārt, ja ir nepieciešams atrast no visiem datiem, cik katram lietotājam ir posti:
SELECT COUNT(*) AS postu_skaits
FROM `posts`
GROUP BY user_id
 
Atgriež:
postu_skaits2 | 3
 
Ja nepieciešams iegūt postu skaitu konkrētam lietotājam:
SELECT COUNT(*) AS postu_skaits
FROM `posts`
WHERE user_id = 2
 
Atgriež:
postu_skaits: 3
Edited by xfr33
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...